Browse Source

getVisibleTeleportObjects: use getObj as not verbose

We checking visibility in this function so there no need to send information about that into errorStream.
ArseniyShestakov 10 years ago
parent
commit
eced16945e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/CGameInfoCallback.cpp

+ 1 - 1
lib/CGameInfoCallback.cpp

@@ -853,7 +853,7 @@ std::vector<ObjectInstanceID> CGameInfoCallback::getVisibleTeleportObjects(std::
 {
 	vstd::erase_if(ids, [&](ObjectInstanceID id) -> bool
 	{
-		auto obj = getObj(id);
+		auto obj = getObj(id, false);
 		return player != PlayerColor::UNFLAGGABLE && (!obj || !isVisible(obj->pos, player));
 	});
 	return ids;