From 1fab6f7867260877d3a0e908e4a170eb36e3cf2e Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Thu, 3 Mar 2022 01:09:13 +1100 Subject: [PATCH] Mark IItemStatus as obsolete (#6914) --- Content.Client/Items/Components/IItemStatus.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Content.Client/Items/Components/IItemStatus.cs b/Content.Client/Items/Components/IItemStatus.cs index 80ab748aa1..67a1180568 100644 --- a/Content.Client/Items/Components/IItemStatus.cs +++ b/Content.Client/Items/Components/IItemStatus.cs @@ -13,6 +13,7 @@ namespace Content.Client.Items.Components /// /// The control to render as status. /// + [Obsolete("Use ItemStatusCollectMessage")] public Control MakeControl(); /// @@ -26,6 +27,7 @@ namespace Content.Client.Items.Components /// Note that this may be called after a second invocation of (for example if the user switches the item between two hands). /// /// + [Obsolete("Use ItemStatusCollectMessage")] public void DestroyControl(Control control) { }