Refund on break even

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

View File

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