From 75475e398685ef95a700d3a2084d082986df99eb Mon Sep 17 00:00:00 2001 From: Revision Date: Sun, 28 Jul 2024 02:57:46 +0200 Subject: [PATCH] Fix debug message --- src/strategy/actions/MovementActions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/strategy/actions/MovementActions.cpp b/src/strategy/actions/MovementActions.cpp index 7ae2f99f..dae03815 100644 --- a/src/strategy/actions/MovementActions.cpp +++ b/src/strategy/actions/MovementActions.cpp @@ -853,7 +853,7 @@ void MovementAction::UpdateMovementState() Transport* newTransport = bot->GetMap()->GetTransportForPos(bot->GetPhaseMask(), bot->GetPositionX(), bot->GetPositionY(), bot->GetPositionZ(), bot); if (newTransport != bot->GetTransport()) { - LOG_DEBUG("playerbots", "Bot {} is on a transport", IsMovingAllowed()); + LOG_DEBUG("playerbots", "Bot {} is on a transport", bot->GetName()); if (bot->GetTransport()) bot->GetTransport()->RemovePassenger(bot, true);