forked from liza/Questionable
Differentiate between Pathfinding + Path running
This commit is contained in:
parent
1ea5ae9e40
commit
0a702ce361
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user