Differentiate between Pathfinding + Path running

master
Liza 2024-07-23 00:38:32 +02:00
parent 1ea5ae9e40
commit 0a702ce361
Signed by: liza
GPG Key ID: 7199F8D727D55F67
1 changed files with 7 additions and 1 deletions

View File

@ -225,7 +225,13 @@ internal sealed class QuestController
return; return;
} }
if (_movementController.IsPathfinding || _movementController.IsPathRunning) if (_movementController.IsPathfinding)
{
DebugState = "Pathfinding is running";
return;
}
if (_movementController.IsPathRunning)
{ {
DebugState = "Path is running"; DebugState = "Path is running";
return; return;