You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a bot is looking trough the history of the game, it might be useful to have that part the opponent hand which has been played later visible. The bot could, for example, use this to learn the opponent's strategy.
We could, for example, have:
defget_move(self, state: PlayerGameState) ->Card:
ifstate.leaders_turn():
previous_state=state.get_previous()
opponent_hand=previous_state.opponent.hand# at this point, the card of the last trick is back in the hand of the opponent, so we might as well make it visible
The text was updated successfully, but these errors were encountered:
When a bot is looking trough the history of the game, it might be useful to have that part the opponent hand which has been played later visible. The bot could, for example, use this to learn the opponent's strategy.
We could, for example, have:
The text was updated successfully, but these errors were encountered: