浏览代码

Crash fix

Dydzio 7 年之前
父节点
当前提交
f91c85a900
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      AI/VCAI/VCAI.cpp

+ 2 - 1
AI/VCAI/VCAI.cpp

@@ -1473,7 +1473,8 @@ void VCAI::wander(HeroPtr h)
 			if(bestObjectGoal->goalType == Goals::GET_OBJ)
 			{
 				auto chosenObject = cb->getObjInstance(ObjectInstanceID(bestObjectGoal->objid));
-				logAi->debug("Of all %d destinations, object %s at pos=%s seems nice", dests.size(), chosenObject->getObjectName(), chosenObject->pos.toString());
+				if(chosenObject != nullptr)
+					logAi->debug("Of all %d destinations, object %s at pos=%s seems nice", dests.size(), chosenObject->getObjectName(), chosenObject->pos.toString());
 			}
 			else
 				logAi->debug("Trying to realize goal of type %d as part of wandering.", bestObjectGoal->goalType);