summaryrefslogtreecommitdiff
path: root/npc/airports
diff options
context:
space:
mode:
authorKisuka <Kisuka@54d463be-8e91-2dee-dedb-b68131a5f0ec>2009-02-18 23:57:29 +0000
committerKisuka <Kisuka@54d463be-8e91-2dee-dedb-b68131a5f0ec>2009-02-18 23:57:29 +0000
commitb1a7decb5f4f88f49ab42f87cd4e770542affd69 (patch)
tree66424633a018a0d6c36a26be8446518c314e8caa /npc/airports
parentcc766f1559d9ce99e07aaf9ee3952bc146788470 (diff)
downloadhercules-b1a7decb5f4f88f49ab42f87cd4e770542affd69.tar.gz
hercules-b1a7decb5f4f88f49ab42f87cd4e770542affd69.tar.bz2
hercules-b1a7decb5f4f88f49ab42f87cd4e770542affd69.tar.xz
hercules-b1a7decb5f4f88f49ab42f87cd4e770542affd69.zip
- Small fix to zeny check in airships.txt (bugreport:2763)
- Fixed a typo in thana_quest.txt (bugreport:2783) - Added missing dialog to Biological Weapon Quest. (bugreport:2778) - Optimized and fixed getequipname() in card_remover.txt (bugreport:2156) - Added missing npc name in Lvl4_weapon_quest.txt (bugreport:2764) - Updated item scripts for 12294 to 12297. (bugreport:2766) - Updated item 1483 (Ivory Lance). (bugreport:2753) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13537 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/airports')
-rw-r--r--npc/airports/airships.txt7
1 files changed, 4 insertions, 3 deletions
diff --git a/npc/airports/airships.txt b/npc/airports/airships.txt
index 02dd7f93f..ba2d7c94f 100644
--- a/npc/airports/airships.txt
+++ b/npc/airports/airships.txt
@@ -3,7 +3,7 @@
//===== By: ==================================================
//= eAthena Dev Team
//===== Current Version: =====================================
-//= 1.1a
+//= 1.1b
//===== Compatible With: =====================================
//= eAthena SVN 3422+(Requires jA Script System)
//===== Description: =========================================
@@ -30,6 +30,7 @@
//= 1.0 Fixed bad NPC header data to comply with rev. 11603. [L0ne_W0lf]
//= 1.1 Touch-ups, and changed references of "Yuno" to "Juno", [L0ne_W0lf]
//= 1.1a Small fix to comparison check. [Paradox924X]
+//= 1.1b Small fix to zeny check. [Kisuka]
//============================================================
//============================================================
@@ -858,7 +859,7 @@ izlude,201,54,3 script Airship Staff#izl 91,{
warp "airplane_01",224,64;
close;
}
- if(Zeny > 1200) {
+ if(Zeny >= 1200) {
set Zeny, Zeny - 1200;
warp "airplane_01",224,64;
close;
@@ -897,7 +898,7 @@ hugel,182,150,3 script Airship Staff#hu 91,{
warp "airplane",224,64;
close;
}
- if(Zeny > 1200) {
+ if(Zeny >= 1200) {
set Zeny, Zeny - 1200;
warp "airplane",224,64;
close;