diff options
-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]"; |