diff --git a/store/src/game.rs b/store/src/game.rs index 6f60b05..7b0b86b 100644 --- a/store/src/game.rs +++ b/store/src/game.rs @@ -301,8 +301,8 @@ impl GameState { return false; } // Check the turn stage - if self.turn_stage != TurnStage::Move - && self.turn_stage != TurnStage::HoldOrGoChoice + if self.turn_stage != TurnStage::HoldOrGoChoice + && self.turn_stage != TurnStage::Move { return false; }