diff options
author | Stefan Beller <stefanbeller@googlemail.com> | 2011-01-03 01:51:52 +0100 |
---|---|---|
committer | Stefan Beller <stefanbeller@googlemail.com> | 2011-01-03 01:51:52 +0100 |
commit | 2f3127f3996d9b401b2f6cf680b511a6f2525e9d (patch) | |
tree | 602ef48b165da93451f60383559578284fdc2a1f /npc/006-1_Desert_mountains | |
parent | cd2325a40b2a3b38fa48c63f9e0935b3e361b542 (diff) | |
download | serverdata-2f3127f3996d9b401b2f6cf680b511a6f2525e9d.tar.gz serverdata-2f3127f3996d9b401b2f6cf680b511a6f2525e9d.tar.bz2 serverdata-2f3127f3996d9b401b2f6cf680b511a6f2525e9d.tar.xz serverdata-2f3127f3996d9b401b2f6cf680b511a6f2525e9d.zip |
fixed missing goto
Diffstat (limited to 'npc/006-1_Desert_mountains')
-rw-r--r-- | npc/006-1_Desert_mountains/miriam.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/006-1_Desert_mountains/miriam.txt b/npc/006-1_Desert_mountains/miriam.txt index 0e937535..e119e0f9 100644 --- a/npc/006-1_Desert_mountains/miriam.txt +++ b/npc/006-1_Desert_mountains/miriam.txt @@ -17,7 +17,7 @@ L_teach: set @agi, readparam(bAgi); set @torso$, getitemname(getequipid(equip_torso)); set @weight, MaxWeight/Weight; - if (@weight < 3) L_heavyweight; + if (@weight < 3) goto L_heavyweight; if (@agi < 90) goto L_slow; if (countitem("SteelShield") > 0 || countitem("WarlordHelmet") > 0 || countitem("CrusadeHelmet") > 0 || countitem("WarlordPlate") > 0 || countitem("KnightsHelmet") > 0 || countitem("InfantryHelmet") > 0 || countitem("ChainmailShirt") > 0) goto L_heavymetal; goto L_offer; |