diff --git a/dGame/dComponents/MovementAIComponentAronwk.cpp b/dGame/dComponents/MovementAIComponentAronwk.cpp index e8993c2d..367c01aa 100644 --- a/dGame/dComponents/MovementAIComponentAronwk.cpp +++ b/dGame/dComponents/MovementAIComponentAronwk.cpp @@ -149,7 +149,9 @@ void MovementAIComponent::HandleWaypointCommandUnequipInventory(const std::strin float MovementAIComponent::HandleWaypointCommandDelay(const std::string& data) { float delay = 0.0f; std::string delayString = data; - if (!GeneralUtils::TryParse(delayString, delay)) return; + if (!GeneralUtils::TryParse(delayString, delay)){ + Game::logger->LogDebug("MovementAIComponentAronwk", "Failed to parse delay %s", data.c_str()); + } return delay; }