diff options
author | Haru <haru@dotalux.com> | 2015-12-18 05:48:23 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-12-18 05:53:48 +0100 |
commit | a782aa1540b63d5fffd55d835f6f30ee0c53d0f1 (patch) | |
tree | 4d20c27f191e91adabb029342683687bce5ca4d5 /npc/quests/guildrelay.txt | |
parent | dbe5f2237cada6a261e297b60857dc305860a88d (diff) | |
download | hercules-a782aa1540b63d5fffd55d835f6f30ee0c53d0f1.tar.gz hercules-a782aa1540b63d5fffd55d835f6f30ee0c53d0f1.tar.bz2 hercules-a782aa1540b63d5fffd55d835f6f30ee0c53d0f1.tar.xz hercules-a782aa1540b63d5fffd55d835f6f30ee0c53d0f1.zip |
Replaced numeric values with UNITTYPE_ constants in getmapxy
Follow-up to dbe5f2237cada6a261e297b60857dc305860a88d
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'npc/quests/guildrelay.txt')
-rw-r--r-- | npc/quests/guildrelay.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/quests/guildrelay.txt b/npc/quests/guildrelay.txt index 79a6e99e5..0968c9ae0 100644 --- a/npc/quests/guildrelay.txt +++ b/npc/quests/guildrelay.txt @@ -1240,7 +1240,7 @@ - script RelayDummy2::GuildRelay2 4_M_SAGE_A,{ .@name$ = strnpcinfo(1); - getmapxy(.@m$,.@x,.@x,1); + getmapxy(.@m$, .@x, .@x, UNITTYPE_NPC); .@GID = getcastledata(.@m$,1); if (checkweight(Knife,1) == 0) { mes "^3355FFWait a minute! You're"; @@ -1749,7 +1749,7 @@ - script RelayDummy3::GuildRelay3 4_M_SAGE_A,{ .@name$ = strnpcinfo(1); - getmapxy(.@m$,.@x,.@x,1); + getmapxy(.@m$, .@x, .@x, UNITTYPE_NPC); .@GID = getcastledata(.@m$,1); if (checkweight(Knife,1) == 0) { mes "^3355FFWait a minute! You're"; @@ -2433,7 +2433,7 @@ - script GuildDummy4::GuildRelay4 4_M_SAGE_A,{ .@name$ = strnpcinfo(1); - getmapxy(.@m$,.@x,.@x,1); + getmapxy(.@m$, .@x, .@x, UNITTYPE_NPC); .@GID = getcastledata(.@m$,1); if (checkweight(Knife,1) == 0) { mes "^3355FFWait a minute! You're"; |