diff --git a/game/game.py b/game/game.py index 32abab7e..d2054682 100644 --- a/game/game.py +++ b/game/game.py @@ -341,7 +341,6 @@ class Game: with logged_duration("Turn initialization"): self.initialize_turn(events) - events.begin_new_turn() EventStream.put_nowait(events) # Autosave progress @@ -436,6 +435,8 @@ class Game: with logged_duration("Computing culling positions"): self.compute_unculled_zones(events) + events.begin_new_turn() + def message(self, title: str, text: str = "") -> None: self.informations.append(Information(title, text, turn=self.turn))