Fix a bug where enemies will path into the player's space because collision isn't done at the right time. I think this may need another fix in the future when we get to the combat.

master
Zed A. Shaw 1 month ago
parent 3986e6978e
commit 55b67dcf5d
  1. 2
      gui.cpp

@ -220,8 +220,8 @@ namespace gui {
void FSM::run_systems() {
System::enemy_pathing($level);
System::motion($level);
System::collision($level);
System::motion($level);
System::death($level);
}

Loading…
Cancel
Save