diff options
author | Thorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com> | 2009-06-30 10:40:50 +0200 |
---|---|---|
committer | Thorbjørn Lindeijer <thorbjorn.lindeijer@nokia.com> | 2009-06-30 10:40:50 +0200 |
commit | 910be529c4437c67fa0a254bf596ac4c6208866f (patch) | |
tree | 07b3f8eebe7c37eb96f3149bab449ef70c4b7dbf | |
parent | e90af0269523a83c270e27dd4533e610413286a8 (diff) | |
download | serverdata-910be529c4437c67fa0a254bf596ac4c6208866f.tar.gz serverdata-910be529c4437c67fa0a254bf596ac4c6208866f.tar.bz2 serverdata-910be529c4437c67fa0a254bf596ac4c6208866f.tar.xz serverdata-910be529c4437c67fa0a254bf596ac4c6208866f.zip |
Fixed Sandra going wrong 1 out of 3 times
Reported by MStoykov.
Change was missing from f91d834dbf58b44af5a6fc8e903aa8f4d654c496
-rw-r--r-- | 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 bbaca563..1dab65ed 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]"; |