message notes no longer show seen notes in chat (#23271)

Fix chat messages
This commit is contained in:
LankLTE
2023-12-30 23:01:05 -08:00
committed by GitHub
parent a22e480167
commit 3737266285

View File

@@ -83,9 +83,10 @@ public sealed class AdminNotesSystem : EntitySystem, IPostInjectInit
var ui = new AdminMessageEui(); var ui = new AdminMessageEui();
_euis.OpenEui(ui, e.Session); _euis.OpenEui(ui, e.Session);
ui.SetMessage(message); ui.SetMessage(message);
// Only send the message if they haven't seen it yet
_chat.DispatchServerMessage(e.Session, messageString);
} }
// Send the message anyway
_chat.DispatchServerMessage(e.Session, messageString);
} }
} }