summaryrefslogtreecommitdiff
path: root/npc/custom/etc/blackjack.txt
diff options
context:
space:
mode:
authorshennetsind <ind@henn.et>2013-12-02 13:18:39 -0200
committershennetsind <ind@henn.et>2013-12-02 13:18:39 -0200
commit95581cedd9a89d8eac918bdc77c1a98e017abc46 (patch)
tree2dec92f4a0a9913de607741bd7d7224d8241409c /npc/custom/etc/blackjack.txt
parente46ca28bddd673f8217456297f596e0fe3c67609 (diff)
parent9f210e13ce08340fc4920311518187e8a03a636f (diff)
downloadhercules-95581cedd9a89d8eac918bdc77c1a98e017abc46.tar.gz
hercules-95581cedd9a89d8eac918bdc77c1a98e017abc46.tar.bz2
hercules-95581cedd9a89d8eac918bdc77c1a98e017abc46.tar.xz
hercules-95581cedd9a89d8eac918bdc77c1a98e017abc46.zip
Merge branch 'master' of https://github.com/HerculesWS/Hercules
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 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: