diff options
-rw-r--r-- | npc/Changelog.txt | 1 | ||||
-rw-r--r-- | npc/quests/Kiel_Hyre_Quest.txt | 7 |
2 files changed, 5 insertions, 3 deletions
diff --git a/npc/Changelog.txt b/npc/Changelog.txt index 0af26d80a..ff99fca15 100644 --- a/npc/Changelog.txt +++ b/npc/Changelog.txt @@ -1,6 +1,7 @@ Date Added ====== 2008/08/31 + * Rev. 13154 Missed one of those blatant errors in the Keil Hyre Quest. [L0ne_W0lf] * Rev. 13154 Fixed blatant errors that I added to Keil Hyre Quest. [L0ne_W0lf] 2008/08/29 * Rev. 13152 Just fixing some reported script bug. [L0ne_W0lf] diff --git a/npc/quests/Kiel_Hyre_Quest.txt b/npc/quests/Kiel_Hyre_Quest.txt index 043615088..064a3ee5a 100644 --- a/npc/quests/Kiel_Hyre_Quest.txt +++ b/npc/quests/Kiel_Hyre_Quest.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= L0ne_W0lf (Script), DZeroX (Timer) //===== Current Version: ===================================== -//= 4.2a +//= 4.2b //===== Compatible With: ===================================== //= eAthena SVN //===== Description: ========================================= @@ -89,7 +89,8 @@ //= Updated comments for get/delitem commands. //= 4.1 Added an 'end;' to Kiel Hyre's dialog for the "Yes" option for if you want to confront Kiehl. //= 4.2 Fixed some issues reported in bugreport:2129. [L0ne_W0lf] -//= 3.2a Follow up to last update. [L0ne_W0lf] +//= 4.2a Follow up to last update. [L0ne_W0lf] +//= 4.2b Missed a condition, fixed it though. [L0ne_W0lf] //============================================================ //============================================================================ @@ -3388,7 +3389,7 @@ kh_dun01,235,48,0 script Heavy Door#kh1::HeavyDoorKHQ1 111,{ // Robotic's Factory; Heavy Door (These doors don't seem to serve any purpose) //---------------------------------------------------------------------------- kh_dun01,76,233,0 script Heavy Door::HeavyDoorKHQ2 111,{ - if ((KielHyreQuest <= 38) && (KielHyreQuest > 46)) { + if ((KielHyreQuest >= 38) && (KielHyreQuest < 46)) { mes "^3355FFThere is a large, heavy"; mes "door infront of you.^000000"; next; |