From eb7f592154096c098ea2baeb053c8f275b8cbf11 Mon Sep 17 00:00:00 2001 From: moneyl <8206401+Moneyl@users.noreply.github.com> Date: Tue, 21 Jan 2020 12:12:50 -0500 Subject: [PATCH] Add more client/server only components to registerIgnore lists (#534) Fixes a few warnings from components not added to the ignore list on client/server. --- Content.Client/EntryPoint.cs | 4 +++- Content.Server/EntryPoint.cs | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Content.Client/EntryPoint.cs b/Content.Client/EntryPoint.cs index a7ea6d594c..a3d469b636 100644 --- a/Content.Client/EntryPoint.cs +++ b/Content.Client/EntryPoint.cs @@ -125,7 +125,9 @@ namespace Content.Client "MedkitFill", "FloorTile", "FootstepSound", - "UtilityBeltClothingFill" + "UtilityBeltClothingFill", + "ShuttleController", + "HumanInventoryController" }; foreach (var ignoreName in registerIgnore) diff --git a/Content.Server/EntryPoint.cs b/Content.Server/EntryPoint.cs index 06630a8198..9f5fe35a4f 100644 --- a/Content.Server/EntryPoint.cs +++ b/Content.Server/EntryPoint.cs @@ -39,6 +39,7 @@ namespace Content.Server "InteractionOutline", "MeleeWeaponArcAnimation", "AnimationsTest", + "ItemStatus" }; foreach (var ignoreName in registerIgnore)