From 7273a4f7629673d7ea7a1505ac66fbbc24c597b4 Mon Sep 17 00:00:00 2001 From: Outrun Colors Date: Thu, 15 Sep 2022 17:28:48 -0500 Subject: [PATCH] Refund on break even --- files/helpers/slots.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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)