diff --git a/hanab_live.py b/hanab_live.py index 3bd0cab..0b4821b 100644 --- a/hanab_live.py +++ b/hanab_live.py @@ -41,8 +41,8 @@ class HanabLiveInstance(hanabi.HanabiInstance): class HanabLiveGameState(hanabi.GameState): - def __init__(self, instance: HanabLiveInstance): - super().__init__(instance) + def __init__(self, instance: HanabLiveInstance, starting_player: int = 0): + super().__init__(instance, starting_player) self.instance: HanabLiveInstance = instance def make_action(self, action):