From 032fda0e72b525c95f6506cd69956a2c6ca69dc2 Mon Sep 17 00:00:00 2001
From: DarkGod <darkgod@net-core.org>
Date: Wed, 30 Oct 2019 16:00:02 +0100
Subject: [PATCH] The way out of the yeek islands now opens after the first
 zone done

---
 game/modules/tome/data/quests/start-yeek.lua | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/game/modules/tome/data/quests/start-yeek.lua b/game/modules/tome/data/quests/start-yeek.lua
index 3ea91abce0..466b5808f6 100644
--- a/game/modules/tome/data/quests/start-yeek.lua
+++ b/game/modules/tome/data/quests/start-yeek.lua
@@ -20,7 +20,7 @@
 name = "Following The Way"
 desc = function(self, who)
 	local desc = {}
-	desc[#desc+1] = "You have been tasked to remove two threats to the yeeks.\n"
+	desc[#desc+1] = "You have been tasked to remove at leastg one of the threats to the yeeks.\n"
 	desc[#desc+1] = "Protect the Way, and vanquish your foes.\n"
 	if self:isCompleted("murgol") then
 		if self:isCompleted("murgol-invaded") then
@@ -41,7 +41,7 @@ end
 
 on_status_change = function(self, who, status, sub)
 	if sub then
-		if self:isCompleted("ritch") and self:isCompleted("murgol") then
+		if self:isCompleted("ritch") or self:isCompleted("murgol") then
 			who:setQuestStatus(self.id, engine.Quest.DONE)
 			who:grantQuest("rel-tunnel")
 			game.logPlayer(game.player, "You should head to the tunnel to Maj'Eyal and explore the world. For the Way.")
-- 
GitLab