diff options
author | AtlantisRO <atlas@atlantis-ro.net> | 2016-03-14 15:20:15 -0700 |
---|---|---|
committer | AtlantisRO <atlas@atlantis-ro.net> | 2016-03-14 15:20:15 -0700 |
commit | 7f8fc2c2482799b082518684cc3698908baba21d (patch) | |
tree | 3f0adaefb903974a51db89f5db617fc3d059ec0f /npc | |
parent | 98fbf2b317f66d26a05b2edb5541a92feebdfca8 (diff) | |
download | hercules-7f8fc2c2482799b082518684cc3698908baba21d.tar.gz hercules-7f8fc2c2482799b082518684cc3698908baba21d.tar.bz2 hercules-7f8fc2c2482799b082518684cc3698908baba21d.tar.xz hercules-7f8fc2c2482799b082518684cc3698908baba21d.zip |
Fix to NPC [Iromo's Mother#ep3_2] from [Alberta Boy] Quest.
When player is in step 9 from Alberta Boy quest (variable "ep13_2_hiki"), this NPC restart the entire quest, because there is no case to prevent variable > 8.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/quests/quests_alberta.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/quests/quests_alberta.txt b/npc/quests/quests_alberta.txt index 3a9aa616b..fa3942e9c 100644 --- a/npc/quests/quests_alberta.txt +++ b/npc/quests/quests_alberta.txt @@ -2736,7 +2736,7 @@ alberta_in,131,95,5 script Iromo#ep3_2 4_M_KID1,{ } alberta_in,120,93,3 script Iromo's Mother#ep3_2 1_M_INNKEEPER,{ - if (ep13_2_hiki == 8) { + if (ep13_2_hiki >= 8) { mes "[Mother]"; mes "Thank you for helping my son."; mes "But I think we can't do anything"; |