浏览代码

client: do not show obstacles placed by another player

Konstantin 2 年之前
父节点
当前提交
1b893fa525
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5 0
      client/battle/BattleObstacleController.cpp

+ 5 - 0
client/battle/BattleObstacleController.cpp

@@ -78,6 +78,11 @@ void BattleObstacleController::obstaclePlaced(const std::vector<std::shared_ptr<
 {
 	for (auto const & oi : obstacles)
 	{
+		auto side = owner.curInt->cb->playerToSide(owner.curInt->playerID);
+
+		if(!oi->visibleForSide(side.get(),owner.curInt->cb->battleHasNativeStack(side.get())))
+			continue;
+
 		auto spellObstacle = dynamic_cast<const SpellCreatedObstacle*>(oi.get());
 
 		if (!spellObstacle)