From fd2e18eb2963c2d4b1e0e666196c1a9a19c07bbf Mon Sep 17 00:00:00 2001 From: Anna Date: Tue, 1 Feb 2022 16:25:14 -0500 Subject: [PATCH] fix: save cutscene hiding option correctly --- ChatTwo/Configuration.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/ChatTwo/Configuration.cs b/ChatTwo/Configuration.cs index 9669231..acd0218 100755 --- a/ChatTwo/Configuration.cs +++ b/ChatTwo/Configuration.cs @@ -23,6 +23,7 @@ internal class Configuration : IPluginConfiguration { internal void UpdateFrom(Configuration other) { this.HideChat = other.HideChat; + this.HideDuringCutscenes = other.HideDuringCutscenes; this.NativeItemTooltips = other.NativeItemTooltips; this.PrettierTimestamps = other.PrettierTimestamps; this.MoreCompactPretty = other.MoreCompactPretty;