fix loss payout

the payout has been taken in the betPlaced so its gone already no reason to recalculate (which subtracts it from bank)
This commit is contained in:
SpudGunMan
2024-09-21 16:33:31 -07:00
parent 1615fa9e51
commit 620a6f4795
-4
View File
@@ -250,12 +250,8 @@ class PlayerVP:
self.bankroll += self.bet_size * payoff[hand_name]
else:
hand_name = "Bad Hand 🙈"
if resetHand:
self.bankroll += self.bet_size * payoff[hand_name]
else: # for everything Hand
hand_name = "Bad Hand 🙈"
if resetHand:
self.bankroll += self.bet_size * payoff[hand_name]
if resetHand:
self.hand = []