From 083bafc357b78cdfc24e18826e3de0d547a5a60e Mon Sep 17 00:00:00 2001 From: Daniel Olsen Date: Sun, 25 Feb 2024 00:39:15 +0100 Subject: [PATCH] add start tile back to the market after scoring --- src/azul.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/azul.rs b/src/azul.rs index 62d1b89..1a8b63e 100644 --- a/src/azul.rs +++ b/src/azul.rs @@ -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()?;