From 206c3720a29b0db6c73ea534bd3f34bacaef17de Mon Sep 17 00:00:00 2001 From: Erik Schilling Date: Tue, 15 Nov 2011 21:06:07 +0100 Subject: Made Constants case-sensitive --- world/map/npc/functions/ferry.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'world/map/npc/functions/ferry.txt') 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; -- cgit v1.2.3-60-g2f50