Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions games/games.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,9 @@ async def start_game(self, ctx, game_name, players, initiator):
buyin = await self.get_buyin(ctx, cc_cog, initiator, players)
for player in players:
await cc_cog.subtract_coin(player, buyin)
pot += buyin
# winning against chowder bot gives you 1.5X
pot *= 1.5
pot += buyin

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this should still be in the loop, no?

# winning against chowder bot gives you 1.5X
pot *= 1.5
winners = await blackjack.start(self.bot, ctx, players)

elif game_name == "chowderfight":
Expand Down