From The Mana World
From 09d13379bebb053cd081b9445235f1da6fd72bd8 Mon Sep 17 00:00:00 2001 From: Freeyorp <Freeyorp101@NOSPAM@hotmail.com> Date: Tue, 30 Jun 2009 20:35:24 +1200 Subject: [PATCH] Fix some gotos in sandra's script Reported by MStoykov on IRC --- npc/001-1_Tulimshar/sandra.txt | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/npc/001-1_Tulimshar/sandra.txt b/npc/001-1_Tulimshar/sandra.txt index bbaca56..1dab65e 100644 --- a/npc/001-1_Tulimshar/sandra.txt +++ b/npc/001-1_Tulimshar/sandra.txt @@ -41,9 +41,9 @@ L_Ask: L_Yes: set @TEMP, rand(3); - if(@TEMP == 0) goto L_Req1; - if(@TEMP == 1) goto L_Req2; - if(@TEMP == 2) goto L_Req3; + if(@TEMP == 0) goto L_Req0; + if(@TEMP == 1) goto L_Req1; + if(@TEMP == 2) goto L_Req2; L_Req0: mes "[Sandra]"; -- 1.6.0.4