summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDastgir Pojee <dastgirp@gmail.com>2016-10-08 11:16:18 +0530
committerDastgir Pojee <dastgirp@gmail.com>2016-10-08 11:16:18 +0530
commitc40d4995c93a9e932356ed952328f97e97c3aa0f (patch)
tree32df948aec1335126365eb978a23db2e42b6a969
parent9c777dfc4ce6d84e7da89d896baa05786e574a99 (diff)
downloadhercules-c40d4995c93a9e932356ed952328f97e97c3aa0f.tar.gz
hercules-c40d4995c93a9e932356ed952328f97e97c3aa0f.tar.bz2
hercules-c40d4995c93a9e932356ed952328f97e97c3aa0f.tar.xz
hercules-c40d4995c93a9e932356ed952328f97e97c3aa0f.zip
Fixes wrong warp of izlude
-rw-r--r--npc/re/warps/cities/izlude.txt7
1 files changed, 6 insertions, 1 deletions
diff --git a/npc/re/warps/cities/izlude.txt b/npc/re/warps/cities/izlude.txt
index 7f2be3865..124e3ed1f 100644
--- a/npc/re/warps/cities/izlude.txt
+++ b/npc/re/warps/cities/izlude.txt
@@ -126,7 +126,12 @@ OnTouch:
erasequest(21001);
if (questprogress(21002))
erasequest(21002);
- warp("izlude"+strnpcinfo(NPC_NAME_HIDDEN), 196, 209);
+
+ .@map$ = "izlude";
+ if (strnpcinfo(NPC_NAME_HIDDEN) != "izlude")
+ .@map$ = .@map$ + strnpcinfo(NPC_NAME_HIDDEN);
+
+ warp(.@map$, 196, 209);
end;
}