diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-02-02 13:55:29 +0000 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-02-02 13:55:29 +0000 |
commit | 28cb576f5bdcb1533cd13b1c467c49764ca5cf06 (patch) | |
tree | 3472e027d8ea439160d31037ccf3709d8fd61840 /npc | |
parent | e492b188a488a36219a60263af756a8857957da6 (diff) | |
download | serverdata-28cb576f5bdcb1533cd13b1c467c49764ca5cf06.tar.gz serverdata-28cb576f5bdcb1533cd13b1c467c49764ca5cf06.tar.bz2 serverdata-28cb576f5bdcb1533cd13b1c467c49764ca5cf06.tar.xz serverdata-28cb576f5bdcb1533cd13b1c467c49764ca5cf06.zip |
Fix typo
Diffstat (limited to 'npc')
-rw-r--r-- | npc/functions/banker.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/functions/banker.txt b/npc/functions/banker.txt index b10806cc..4c70ff77 100644 --- a/npc/functions/banker.txt +++ b/npc/functions/banker.txt @@ -66,7 +66,7 @@ D_All: goto L_Deposit; L_Deposit: - if (zeny < @Ammount) goto L_NoMoney; + if (zeny < @Amount) goto L_NoMoney; set zeny, zeny - @Amount; set BankAccount, BankAccount + @Amount; goto L_Balance; |