diff options
author | Paradox924X <Paradox924X@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-02-21 20:51:57 +0000 |
---|---|---|
committer | Paradox924X <Paradox924X@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-02-21 20:51:57 +0000 |
commit | b8d9d3ef71cb8d93bb8173c8c04e8d3d1798b187 (patch) | |
tree | a8c628b465eb41b1d8a38783cd239af778198ba1 /npc | |
parent | c6b0361bd56ee72df8b9b3ee7eca824e0619d407 (diff) | |
download | hercules-b8d9d3ef71cb8d93bb8173c8c04e8d3d1798b187.tar.gz hercules-b8d9d3ef71cb8d93bb8173c8c04e8d3d1798b187.tar.bz2 hercules-b8d9d3ef71cb8d93bb8173c8c04e8d3d1798b187.tar.xz hercules-b8d9d3ef71cb8d93bb8173c8c04e8d3d1798b187.zip |
Fixed Hugel Airship Staff from teleporting you to the wrong airplane.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12226 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc')
-rw-r--r-- | npc/Changelog.txt | 2 | ||||
-rw-r--r-- | npc/airports/airships.txt | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt index 723a7548d..ba1c5b605 100644 --- a/npc/Changelog.txt +++ b/npc/Changelog.txt @@ -1,5 +1,7 @@ Date Added ====== +2008/02/21 + * Fixed Hugel Airship Staff from teleporting you to the wrong airplane. [Paradox924X] 2008/02/17 * Updated Eye of Hellion to use the new format of the input command. [Skotlex] 2008/02/13 diff --git a/npc/airports/airships.txt b/npc/airports/airships.txt index 0fa0557db..7253eca90 100644 --- a/npc/airports/airships.txt +++ b/npc/airports/airships.txt @@ -893,12 +893,12 @@ hugel,182,150,3 script Airship Staff#hu 91,{ if (select("Yes:No") == 1) { if(countitem(7311) > 0) { delitem 7311,1; - warp "airplane_01",224,64; + warp "airplane",224,64; close; } if(Zeny > 1200) { set Zeny, Zeny - 1200; - warp "airplane_01",224,64; + warp "airplane",224,64; close; } mes "[Airship Staff]"; |