From 8bbe8cf57d2cfd20c72eaaf2b0ec9597e3d5b205 Mon Sep 17 00:00:00 2001 From: Oven Bread Date: Fri, 2 Jun 2023 10:28:02 +0000 Subject: [PATCH] Fixed dialogue hang in Plague City --- .../ardougne/plaguecity/quest/elena/PlagueCityListeners.kt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Server/src/main/content/region/kandarin/ardougne/plaguecity/quest/elena/PlagueCityListeners.kt b/Server/src/main/content/region/kandarin/ardougne/plaguecity/quest/elena/PlagueCityListeners.kt index 5925cfa67..469f9302a 100644 --- a/Server/src/main/content/region/kandarin/ardougne/plaguecity/quest/elena/PlagueCityListeners.kt +++ b/Server/src/main/content/region/kandarin/ardougne/plaguecity/quest/elena/PlagueCityListeners.kt @@ -326,11 +326,10 @@ class PlagueCityListeners : InteractionListener { npcl(FacialExpression.FRIENDLY, "Go away. We don't want any.").also { stage = END_DIALOGUE } } 1 -> npcl(FacialExpression.FRIENDLY, "Oh... why didn't you say, come in then.").also { stage++ } - 2 -> DoorActionHandler.handleAutowalkDoor(player, getScenery(2531, 3328, 0)).also { stage++ } - 3 -> sendItemDialogue(player!!, BOOK, "You hand the book to Ted as you enter.").also { stage++ } + 2 -> sendItemDialogue(player!!, BOOK, "You hand the book to Ted as you enter.").also { stage++ } + 3 -> npcl(FacialExpression.NEUTRAL, "Thanks, I've been missing that.").also { stage++ } 4 -> { end() - npcl(FacialExpression.NEUTRAL, "Thanks, I've been missing that.") DoorActionHandler.handleAutowalkDoor(player, getScenery(2531, 3328, 0)) setQuestStage(player!!, "Plague City", 9) }