summaryrefslogtreecommitdiff
path: root/world/map/npc/functions/ferry.txt
diff options
context:
space:
mode:
Diffstat (limited to 'world/map/npc/functions/ferry.txt')
-rw-r--r--world/map/npc/functions/ferry.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/world/map/npc/functions/ferry.txt b/world/map/npc/functions/ferry.txt
index 50ad9038..26da871d 100644
--- a/world/map/npc/functions/ferry.txt
+++ b/world/map/npc/functions/ferry.txt
@@ -33,30 +33,30 @@ L_MenuWithCandor:
L_Tulimshar:
if (@loc == DOCK_tulimshar)
goto L_AlreadyThere;
- if (zeny < @cost_tulimshar)
+ if (Zeny < @cost_tulimshar)
goto L_NotEnoughGP;
- set zeny, zeny - @cost_tulimshar;
+ set Zeny, Zeny - @cost_tulimshar;
warp "022-1.gat", 76, 72;
close;
L_Hurnscald:
if (@loc == DOCK_hurnscald)
goto L_AlreadyThere;
- if (zeny < @cost_hurnscald)
+ if (Zeny < @cost_hurnscald)
goto L_NotEnoughGP;
- set zeny, zeny - @cost_hurnscald;
+ set Zeny, Zeny - @cost_hurnscald;
warp "008-1.gat", 137, 64;
close;
L_Candor:
if (@loc == DOCK_candor)
goto L_AlreadyThere;
- if (zeny < @cost_candor)
+ if (Zeny < @cost_candor)
goto L_NotEnoughGP;
- set zeny, zeny - @cost_candor;
+ set Zeny, Zeny - @cost_candor;
warp "029-1.gat", 25, 37;
close;