diff --git a/files/helpers/slots.py b/files/helpers/slots.py index 64d598cb7..34134e0c7 100644 --- a/files/helpers/slots.py +++ b/files/helpers/slots.py @@ -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)