fixed zone reduction sequence

This commit is contained in:
2024-04-17 19:32:56 +00:00
parent 46ce93e84e
commit ddbb71b5f6
2 changed files with 56 additions and 35 deletions

View File

@@ -21,6 +21,9 @@ export default class Game {
}
//The game has started
if(newState == GameState.PLAYING) {
if(!this.zone.ready()) {
return false;
}
this.initLastSentLocations();
this.zone.reset()
this.zone.start()