add start tile back to the market after scoring

This commit is contained in:
Daniel Lovbrotte Olsen 2024-02-25 00:39:15 +01:00
parent 7debb20e4c
commit 083bafc357
1 changed files with 1 additions and 0 deletions

View File

@ -234,6 +234,7 @@ impl GameState {
if player.floor.start == 1 {
self.starting_player = player_name.clone();
player.floor.start = 0;
self.market.start = 1;
}
self.lid += player.floor.try_into()?;