diff options
Diffstat (limited to 'npc/custom/etc/blackjack.txt')
-rw-r--r-- | npc/custom/etc/blackjack.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/custom/etc/blackjack.txt b/npc/custom/etc/blackjack.txt index 8fe70ad72..b86316706 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; - set Zeny, Zeny + @bet; + Zeny += @bet; goto L_Play; sL_Lose: mes "[Dealer]"; mes "I'm sorry but you've lost."; - set Zeny, Zeny - @bet; + Zeny -= @bet; next; goto L_Play; sL_Push: |