From 6144631b161d2eb83285f3b31f3b62113fdadafa Mon Sep 17 00:00:00 2001 From: Infi Date: Mon, 2 Dec 2024 19:26:52 +0100 Subject: [PATCH] - Save ExtraChat channel --- ChatTwo/ChatTwo.csproj | 2 +- ChatTwo/Ui/ChatLogWindow.cs | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/ChatTwo/ChatTwo.csproj b/ChatTwo/ChatTwo.csproj index c5bd18f..c12cce7 100755 --- a/ChatTwo/ChatTwo.csproj +++ b/ChatTwo/ChatTwo.csproj @@ -1,6 +1,6 @@ - 1.29.10 + 1.29.11 net8.0-windows enable enable diff --git a/ChatTwo/Ui/ChatLogWindow.cs b/ChatTwo/Ui/ChatLogWindow.cs index 23fedc6..2322eda 100644 --- a/ChatTwo/Ui/ChatLogWindow.cs +++ b/ChatTwo/Ui/ChatLogWindow.cs @@ -867,6 +867,8 @@ public sealed class ChatLogWindow : Window // SendMessage detour. var bytes = Encoding.UTF8.GetBytes(channel.Value.Prefix()); ChatBox.SendMessageUnsafe(bytes); + + Plugin.CurrentTab.CurrentChannel.Channel = channel.Value; return; }