Hide error message for hole drop arena

This commit is contained in:
Benau 2019-11-24 11:08:08 +08:00
parent 426be8f3c1
commit 8c223cd2c2

View File

@ -196,7 +196,7 @@ bool ArenaAI::updateAimingPosition(Vec3* target_point)
if (forward == Graph::UNKNOWN_SECTOR ||
m_target_node == Graph::UNKNOWN_SECTOR)
{
Log::error("ArenaAI", "Next node is unknown, path finding failed!");
Log::debug("ArenaAI", "Next node is unknown, path finding failed!");
return false;
}
@ -212,7 +212,7 @@ bool ArenaAI::updateAimingPosition(Vec3* target_point)
if (next_node == Graph::UNKNOWN_SECTOR)
{
Log::error("ArenaAI", "Next node is unknown, did you forget to link"
Log::debug("ArenaAI", "Next node is unknown, did you forget to link"
" adjacent face in navmesh?");
return false;
}
@ -224,7 +224,7 @@ bool ArenaAI::updateAimingPosition(Vec3* target_point)
next_node = m_graph->getNextNode(previous_node, m_target_node);
if (next_node == Graph::UNKNOWN_SECTOR)
{
Log::error("ArenaAI", "Next node is unknown, did you forget to"
Log::debug("ArenaAI", "Next node is unknown, did you forget to"
" link adjacent face in navmesh?");
return false;
}