diff --git a/store/src/game.rs b/store/src/game.rs index 7b0b86b..6f60b05 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::HoldOrGoChoice - && self.turn_stage != TurnStage::Move + if self.turn_stage != TurnStage::Move + && self.turn_stage != TurnStage::HoldOrGoChoice { return false; }