Refund on break even

remotes/1693045480750635534/spooky-22
Outrun Colors 2022-09-15 17:30:18 -05:00
parent 7273a4f762
commit 16794b8a41
No known key found for this signature in database
GPG Key ID: 0426976DCEFE6073
1 changed files with 1 additions and 4 deletions

View File

@ -24,10 +24,7 @@ def casino_slot_pull(gambler, wager_value, currency):
payout = determine_payout()
reward = wager_value * payout
if payout == 1:
gambler.pay_account(currency, wager_value)
elif payout > 1:
gambler.pay_account(currency, wager_value + reward)
gambler.pay_account(currency, reward)
symbols = build_symbols(payout)
text = build_text(wager_value, payout, currency)