diff --git a/Questionable/Controller/QuestController.cs b/Questionable/Controller/QuestController.cs index 5f4787cc..4630e600 100644 --- a/Questionable/Controller/QuestController.cs +++ b/Questionable/Controller/QuestController.cs @@ -225,7 +225,13 @@ internal sealed class QuestController return; } - if (_movementController.IsPathfinding || _movementController.IsPathRunning) + if (_movementController.IsPathfinding) + { + DebugState = "Pathfinding is running"; + return; + } + + if (_movementController.IsPathRunning) { DebugState = "Path is running"; return;