diff --git a/Content.Server/Popups/PopupExtensions.cs b/Content.Server/Popups/PopupExtensions.cs index 608e6d981e..1419ef46fc 100644 --- a/Content.Server/Popups/PopupExtensions.cs +++ b/Content.Server/Popups/PopupExtensions.cs @@ -12,6 +12,7 @@ namespace Content.Server.Popups /// /// The entity on which to popup the message. /// The message to show. + [Obsolete("Use PopupSystem.PopupEntity instead")] public static void PopupMessageOtherClients(this EntityUid source, string message) { var viewers = Filter.Empty() @@ -42,6 +43,7 @@ namespace Content.Server.Popups /// /// The range in which to search for players, defaulting to one screen. /// + [Obsolete("Use PopupSystem.PopupEntity instead")] public static void PopupMessageEveryone(this EntityUid source, string message, IPlayerManager? playerManager = null, int range = 15) { source.PopupMessage(message);