diff options
author | skyleo <leo-pflug@web.de> | 2016-05-15 17:05:15 +0200 |
---|---|---|
committer | skyleo <leo-pflug@web.de> | 2016-05-15 17:05:15 +0200 |
commit | 5882b2ff21405208312c923fc30a1c8f2505a542 (patch) | |
tree | c122fde9492fb36e5461f35bcfa8cacce18eef3c /npc | |
parent | 8f753b8af57ff852ff8dfb210a580ddcf07e17c2 (diff) | |
download | hercules-5882b2ff21405208312c923fc30a1c8f2505a542.tar.gz hercules-5882b2ff21405208312c923fc30a1c8f2505a542.tar.bz2 hercules-5882b2ff21405208312c923fc30a1c8f2505a542.tar.xz hercules-5882b2ff21405208312c923fc30a1c8f2505a542.zip |
Fixed a bug where you'd skip quest 8102 in rachel sanctuary and thus corrupting your quest log.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/quests/quests_rachel.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/npc/quests/quests_rachel.txt b/npc/quests/quests_rachel.txt index 41e72deee..1fb7f95eb 100644 --- a/npc/quests/quests_rachel.txt +++ b/npc/quests/quests_rachel.txt @@ -7244,7 +7244,10 @@ OnTouch: mes "For now, you may as well"; mes "talk to High Priest Zhed.^000000"; ra_tem_q = 19; - changequest 8102,8103; + if (questprogress(8102) == 1) + changequest 8102,8103; + else + changequest 8101,8103; close; } end; |