From 2ee9360025f8ec4f0e910fba3206c0f8714ab28c Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Thu, 8 Aug 2024 15:14:26 +0200 Subject: [PATCH] Don't auto-close levemete interactions if questionable isn't running --- Questionable/Controller/GameUiController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Questionable/Controller/GameUiController.cs b/Questionable/Controller/GameUiController.cs index 397b6abc..d8c314ee 100644 --- a/Questionable/Controller/GameUiController.cs +++ b/Questionable/Controller/GameUiController.cs @@ -337,7 +337,7 @@ internal sealed class GameUiController : IDisposable } } - if (_questController.NextQuest == null) + if (_questController.IsRunning && _questController.NextQuest == null) { // make sure to always close the leve dialogue if (_questData.GetAllByIssuerDataId(target.DataId).Any(x => x.QuestId is LeveId))