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/014-1/wedding-officiator.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'world/map/npc/014-1') diff --git a/world/map/npc/014-1/wedding-officiator.txt b/world/map/npc/014-1/wedding-officiator.txt index 617a99ae..75f31015 100644 --- a/world/map/npc/014-1/wedding-officiator.txt +++ b/world/map/npc/014-1/wedding-officiator.txt @@ -43,7 +43,7 @@ L_explain_marriage: goto L_main; L_get_married: - if (zeny < WEDDING_FEE) + if (Zeny < WEDDING_FEE) goto L_too_poor; if (BaseLevel < WEDDING_MIN_LEVEL) goto L_too_young; @@ -84,7 +84,7 @@ L_get_married: "This is taking too long.", L_end, "No.", L_end; - if (zeny < WEDDING_FEE) + if (Zeny < WEDDING_FEE) goto L_too_poor; if (BaseLevel < WEDDING_MIN_LEVEL) goto L_too_young; @@ -92,7 +92,7 @@ L_get_married: if (@inventorylist_count > 98) goto L_No_Room_For_Rings; - set zeny, zeny - WEDDING_FEE; + set Zeny, Zeny - WEDDING_FEE; getitem "WeddingRing", 1; getitem "WeddingRing", 1; @@ -218,7 +218,7 @@ L_divorce_nomoney: close; L_do_divorce: - if (zeny < @divorce_cost) + if (Zeny < @divorce_cost) goto L_divorce_nomoney; if (divorce()) goto L_DidDivorce; @@ -232,7 +232,7 @@ L_do_divorce: close; L_DidDivorce: - set zeny, zeny - @divorce_cost; + set Zeny, Zeny - @divorce_cost; mes "[Wedding Officiator]"; mes "After collecting her fee, Wendy licks her quill and writes down some notes."; -- cgit v1.2.3-70-g09d2