From 5bc579a9001b23aad5eb635b4eeac25442b1baff Mon Sep 17 00:00:00 2001 From: kaboissonneault Date: Sun, 25 Feb 2024 14:14:33 -0500 Subject: [PATCH] Fixed "work question" sticking while moving from "Where Is?" to "Tell me About" talk options --- .../Scripts/Game/UserInterfaceWindows/DaggerfallTalkWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/Game/UserInterfaceWindows/DaggerfallTalkWindow.cs b/Assets/Scripts/Game/UserInterfaceWindows/DaggerfallTalkWindow.cs index 059427f255..e391825998 100644 --- a/Assets/Scripts/Game/UserInterfaceWindows/DaggerfallTalkWindow.cs +++ b/Assets/Scripts/Game/UserInterfaceWindows/DaggerfallTalkWindow.cs @@ -1221,7 +1221,7 @@ protected void ClearCurrentQuestion() protected virtual void UpdateQuestion(int index) { TalkManager.ListItem listItem; - if (selectedTalkCategory == TalkCategory.Work) + if (selectedTalkOption == TalkOption.WhereIs && selectedTalkCategory == TalkCategory.Work) { listItem = new TalkManager.ListItem(); listItem.questionType = TalkManager.QuestionType.Work;