diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2013-09-16 11:04:07 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2013-09-16 11:28:50 -0700 |
commit | c8f2dea0bd0068aac6f59a5053d4f0576f21bb23 (patch) | |
tree | 6fd01d79a602924b9c56e9e7b8ef014bcdbce6a1 /world/map/npc/009-4 | |
parent | 1f30542a2d0a10e1834bac8d83fb210afc3d618f (diff) | |
download | serverdata-c8f2dea0bd0068aac6f59a5053d4f0576f21bb23.tar.gz serverdata-c8f2dea0bd0068aac6f59a5053d4f0576f21bb23.tar.bz2 serverdata-c8f2dea0bd0068aac6f59a5053d4f0576f21bb23.tar.xz serverdata-c8f2dea0bd0068aac6f59a5053d4f0576f21bb23.zip |
Refactor all broken returns into goto L_Return
Diffstat (limited to 'world/map/npc/009-4')
-rw-r--r-- | world/map/npc/009-4/torches.txt | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/world/map/npc/009-4/torches.txt b/world/map/npc/009-4/torches.txt index 79fb6ca1..eaf8c837 100644 --- a/world/map/npc/009-4/torches.txt +++ b/world/map/npc/009-4/torches.txt @@ -67,7 +67,7 @@ L_Error2: function|script|DoneWithTorches|, { if (OrumQuest < 11 && OrumQuest >= 8) - return; + goto L_Return; if (OrumQuest < 7) goto L_Different; @@ -82,29 +82,41 @@ L_Different: mes "The flame on this torch looks different than the rest. You better tell Orum about it before doing anything."; set OrumQuest, 6; close; + +L_Return: + return; } // To make sure in range of torches function|script|InRangeTorch1|, { if (isin("009-4.gat",67,20,69,25)) - return; + goto L_Return; mes "You're too far away to do anything with that torch."; close; + +L_Return: + return; } function|script|InRangeTorch2|, { if (isin("009-4.gat",65,41,69,46)) - return; + goto L_Return; mes "You're too far away to do anything with that torch."; close; + +L_Return: + return; } function|script|InRangeTorch3|, { if (isin("009-4.gat",33,84,37,88)) - return; + goto L_Return; mes "You're too far away to do anything with that torch."; close; + +L_Return: + return; } function|script|TorchLoop|, |