From: Liza Carvelli Date: Mon, 22 Jul 2024 22:38:32 +0000 (+0200) Subject: Differentiate between Pathfinding + Path running X-Git-Tag: v1.15~3 X-Git-Url: https://git.jacobcasper.com/?a=commitdiff_plain;h=0a702ce36193cb52601dabd8509a12580b19152b;p=Questionable.git Differentiate between Pathfinding + Path running --- 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;