From 0a702ce36193cb52601dabd8509a12580b19152b Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Tue, 23 Jul 2024 00:38:32 +0200 Subject: [PATCH] Differentiate between Pathfinding + Path running --- Questionable/Controller/QuestController.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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;