From 049920b3fc5a2e37c092a9db19b74bf29192de76 Mon Sep 17 00:00:00 2001 From: Mihoshika Date: Tue, 5 Sep 2023 06:33:00 +0000 Subject: [PATCH] Opening a quest journal now closes any open interface before opening the new one, thus fixing unimplemented quest journals displaying incorrectly when another is already open --- Server/src/main/content/global/handlers/iface/QuestTabUtils.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/src/main/content/global/handlers/iface/QuestTabUtils.kt b/Server/src/main/content/global/handlers/iface/QuestTabUtils.kt index 187669bd6..d7482c089 100644 --- a/Server/src/main/content/global/handlers/iface/QuestTabUtils.kt +++ b/Server/src/main/content/global/handlers/iface/QuestTabUtils.kt @@ -24,7 +24,7 @@ object QuestTabUtils { val questList = HashSet() var maxQpReq = 0 var qpPenalty = 0 - + closeInterface(player) for (req in unmetReqs) { if (req is QuestReq) questList.add(req.questReq.questName)