summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormekolat <mekolat@users.noreply.github.com>2016-04-19 09:45:47 -0400
committermekolat <mekolat@users.noreply.github.com>2016-04-19 09:45:47 -0400
commit2ee0dad877778ff8325bc1a2fca89357675dbeb6 (patch)
tree2c238a23b52a2d746ccb16f2339bef7e2e834b56
parentea7d999c39ead96efb6d9af7e68794c59290cf60 (diff)
parentf685228678108c67faea77432126f87389103dab (diff)
downloadserverdata-2ee0dad877778ff8325bc1a2fca89357675dbeb6.tar.gz
serverdata-2ee0dad877778ff8325bc1a2fca89357675dbeb6.tar.bz2
serverdata-2ee0dad877778ff8325bc1a2fca89357675dbeb6.tar.xz
serverdata-2ee0dad877778ff8325bc1a2fca89357675dbeb6.zip
Merge pull request #466 from mekolat/mekolat-patch-1
don't abuse `close` in the tutorial
-rw-r--r--world/map/npc/029-2/sorfina.txt14
1 files changed, 4 insertions, 10 deletions
diff --git a/world/map/npc/029-2/sorfina.txt b/world/map/npc/029-2/sorfina.txt
index 9d2d4bb3..8919bade 100644
--- a/world/map/npc/029-2/sorfina.txt
+++ b/world/map/npc/029-2/sorfina.txt
@@ -389,27 +389,21 @@ L_Block:
{
if (TUT_var == 0)
goto L_KnockBack;
- goto L_Close;
+ end;
L_KnockBack:
message strcharinfo(0), "Server : ##BPlease Accept the Game rules";
warp "029-2", 22, 24;
- goto L_Close;
-
-L_Close:
- close;
+ end;
}
029-2,24,24,0|script|#GameRules4|32767,0,1
{
if (TUT_var == 0)
goto L_KnockBack;
- goto L_Close;
+ end;
L_KnockBack:
message strcharinfo(0), "Server : ##BPlease Accept the Game rules";
warp "029-2", 22, 24;
- goto L_Close;
-
-L_Close:
- close;
+ end;
}