From 34edd4e86426f7fbb1ceb863d996fa1cb27874bc Mon Sep 17 00:00:00 2001 From: ceikry Date: Sat, 10 Jul 2021 15:05:48 -0500 Subject: [PATCH] Fixed slight bug in tower guard dialogue --- .../game/content/dialogue/region/jatizso/TowerGuardDialogue.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/src/main/kotlin/rs09/game/content/dialogue/region/jatizso/TowerGuardDialogue.kt b/Server/src/main/kotlin/rs09/game/content/dialogue/region/jatizso/TowerGuardDialogue.kt index c86d020b2..095aaf348 100644 --- a/Server/src/main/kotlin/rs09/game/content/dialogue/region/jatizso/TowerGuardDialogue.kt +++ b/Server/src/main/kotlin/rs09/game/content/dialogue/region/jatizso/TowerGuardDialogue.kt @@ -35,7 +35,7 @@ class TowerGuardDialogue(player: Player? = null) : DialoguePlugin(player) { 8 -> options("Can I watch? I'm curious.", "Oh well, I'd better get going.").also { stage++ } 9 -> when(buttonId){ 1 -> playerl(FacialExpression.ASKING, "Can I watch? I'm curious.").also { stage++ } - 2 -> npcl(FacialExpression.HALF_THINKING, "Oh well, I'd better get going.").also { stage = END_DIALOGUE } + 2 -> playerl(FacialExpression.HALF_THINKING, "Oh well, I'd better get going.").also { stage = END_DIALOGUE } } 10 -> npcl(FacialExpression.NEUTRAL, "IF YOU LIKE!").also { stage = END_DIALOGUE