diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-01-16 16:38:54 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-01-16 16:38:54 +0300 |
commit | f93da0df3ac3adb25d0225615c3e392e5b5d4c2d (patch) | |
tree | 9176924ef7bb127266b497d7a22904430b4e4686 | |
parent | b21cf94dab6eb570b81bb8ef33022361b0117ab1 (diff) | |
download | serverdata-f93da0df3ac3adb25d0225615c3e392e5b5d4c2d.tar.gz serverdata-f93da0df3ac3adb25d0225615c3e392e5b5d4c2d.tar.bz2 serverdata-f93da0df3ac3adb25d0225615c3e392e5b5d4c2d.tar.xz serverdata-f93da0df3ac3adb25d0225615c3e392e5b5d4c2d.zip |
Fix syntax error in peter script.
-rw-r--r-- | npc/000-2-1/peter.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/000-2-1/peter.txt b/npc/000-2-1/peter.txt index 22a5824c..c480c1e5 100644 --- a/npc/000-2-1/peter.txt +++ b/npc/000-2-1/peter.txt @@ -56,7 +56,7 @@ if (@q == 3 || @q == 4) goto l_QuestDone; if (@q == 5) goto l_Thanks; - if (getmapusers("000-2-2.gat") == 0 && $@RAT_SAILOR_HELPER$ != "") $@RAT_SAILOR_HELPER$ = ""; + if (getmapusers("000-2-2.gat") == 0 && $@RAT_SAILOR_HELPER$ != "") set $@RAT_SAILOR_HELPER$, ""; //If map is full of mobs and helper is free if (getmapmobs("000-2-2.gat") == 4 && $@RAT_SAILOR_HELPER$ == "") goto OnGiveTask; |