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,11 +83,12 @@ public sealed class AdminNotesSystem : EntitySystem, IPostInjectInit
var ui = new AdminMessageEui();
_euis.OpenEui(ui, e.Session);
ui.SetMessage(message);
}
// Send the message anyway
// Only send the message if they haven't seen it yet
_chat.DispatchServerMessage(e.Session, messageString);
}
}
}
public void PostInject()
{