moved getpath crap to pathfinding (or should i keep it in actor?)

- stubbed some more crap
This commit is contained in:
Tahir Akhlaq 2017-07-02 20:01:24 +01:00
parent 100f3ae156
commit cc1929a9fb
9 changed files with 149 additions and 25 deletions

View file

@ -45,6 +45,14 @@ namespace FFXIVClassic_Map_Server.actors.chara.ai
// todo: action queues
controller?.Update(tick);
State currState;
while (states.Count > 0 && (currState = states.Peek()).Update(tick))
{
if (currState == GetCurrentState())
{
}
}
}
public void CheckCompletedStates()