summaryrefslogtreecommitdiff
path: root/npc/custom/etc/blackjack.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/custom/etc/blackjack.txt')
-rw-r--r--npc/custom/etc/blackjack.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/custom/etc/blackjack.txt b/npc/custom/etc/blackjack.txt
index b86316706..8fe70ad72 100644
--- a/npc/custom/etc/blackjack.txt
+++ b/npc/custom/etc/blackjack.txt
@@ -233,12 +233,12 @@ sL_Win:
mes "[Dealer]";
mes "Congratulations, you've won!";
next;
- Zeny += @bet;
+ set Zeny, Zeny + @bet;
goto L_Play;
sL_Lose:
mes "[Dealer]";
mes "I'm sorry but you've lost.";
- Zeny -= @bet;
+ set Zeny, Zeny - @bet;
next;
goto L_Play;
sL_Push: