1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-06 08:15:34 +00:00

Merge branch 'log_not_supported_agent_bounds_ptr' into 'master'

Log ptr for which agent bounds are not supported

See merge request OpenMW/openmw!4040
This commit is contained in:
psi29a 2024-04-20 16:37:37 +00:00
commit 29d6c76f93

View file

@ -190,7 +190,8 @@ namespace
{
const DetourNavigator::AgentBounds agentBounds = world.getPathfindingAgentBounds(ptr);
if (!navigator.addAgent(agentBounds))
Log(Debug::Warning) << "Agent bounds are not supported by navigator: " << agentBounds;
Log(Debug::Warning) << "Agent bounds are not supported by navigator for " << ptr.toString() << ": "
<< agentBounds;
}
}