From 17fde7f9e1527d05839ee19417c55c155c73af77 Mon Sep 17 00:00:00 2001 From: Lila Hioh Date: Thu, 14 Jul 2022 09:54:00 +0000 Subject: [PATCH] Fixed issue in Millie Miller's dialogue where Millie would say the player's dialogue --- .../content/quest/free/cooksassistant/MillieMillerDialogue.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/src/main/kotlin/rs09/game/content/quest/free/cooksassistant/MillieMillerDialogue.kt b/Server/src/main/kotlin/rs09/game/content/quest/free/cooksassistant/MillieMillerDialogue.kt index 4f505ffa8..3d0bf5f34 100644 --- a/Server/src/main/kotlin/rs09/game/content/quest/free/cooksassistant/MillieMillerDialogue.kt +++ b/Server/src/main/kotlin/rs09/game/content/quest/free/cooksassistant/MillieMillerDialogue.kt @@ -52,7 +52,7 @@ 35 -> player(FacialExpression.ASKING, "So where does the flour go then?").also { stage++ } 36 -> npc(FacialExpression.SUSPICIOUS, "The flour appears in this room here, you'll need a pot", "to put the flour into. One pot will hold the flour made", "by one load of grain").also { stage++ } 37 -> npc(FacialExpression.HAPPY, "And that's it! You now have some pots of finely ground", "flour of the highest quality. Ideal for making tasty cakes", "or delicous bread. I'm not a cook so you'll have to ask a", "cook to ind out how to bake things.").also { stage++ } - 38 -> npc(FacialExpression.HAPPY, "Great! Thanks for your help.").also { stage = 1000 } + 38 -> player(FacialExpression.HAPPY, "Great! Thanks for your help.").also { stage = 1000 } //Conversation Endpoint 1000 -> end()