back end elimination

This commit is contained in:
2024-03-29 15:48:54 +00:00
parent 174db483c0
commit 7aa030610d
2 changed files with 3 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ export default class Game {
return false;
}
//The game has started
if(this.state == GameState.PLACEMENT && newState == GameState.PLAYING) {
if(newState == GameState.PLAYING) {
this.initLastSentLocations();
}
this.state = newState;