From 8a54a8e6b165a5e99caf57b82660031394bc1f86 Mon Sep 17 00:00:00 2001 From: Bohicatv Date: Sun, 15 Mar 2026 00:40:03 -0700 Subject: [PATCH] fix: Prevents static chat channels from disappearing when logging back in --- Projects/UOContent/Engines/Chat/ChatUser.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Projects/UOContent/Engines/Chat/ChatUser.cs b/Projects/UOContent/Engines/Chat/ChatUser.cs index 9d1fbe7b7..d27b7d8a1 100644 --- a/Projects/UOContent/Engines/Chat/ChatUser.cs +++ b/Projects/UOContent/Engines/Chat/ChatUser.cs @@ -92,6 +92,7 @@ namespace Server.Engines.Chat if (user != null) { + Channel.SendChannelsTo(user); return user; }