Explorar el Código

getVisibleTeleportObjects: use getObj as not verbose

We checking visibility in this function so there no need to send information about that into errorStream.
ArseniyShestakov hace 10 años
padre
commit
eced16945e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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;