Skip to content

Commit

Permalink
Merge branch 'main' into nocard_exception
Browse files Browse the repository at this point in the history
  • Loading branch information
dwagon committed Nov 3, 2023
2 parents 0e15ee2 + 138afe4 commit 197640a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dominion/cards/Card_Catacombs.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ def special(self, game: Game.Game, player: Player.Player) -> None:
cards.append(player.next_card())
except NoCardException:
break
player.output(f'You drew {", ".join([_ for _ in cards])}')

player.output(f'You drew {", ".join([_.name for _ in cards])}')

if ans := player.plr_choose_options(
"What do you want to do?",
("Keep the three", True),
Expand Down

0 comments on commit 197640a

Please sign in to comment.