From a464acf354fb84af35b5b6faef7ac4fbf9774d37 Mon Sep 17 00:00:00 2001 From: PJB3005 Date: Tue, 26 Sep 2017 19:59:31 +0200 Subject: [PATCH] Ignore item and inventory client side. --- Content.Client/EntryPoint.cs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Content.Client/EntryPoint.cs b/Content.Client/EntryPoint.cs index 23c31b9e9b..d2ff4e773f 100644 --- a/Content.Client/EntryPoint.cs +++ b/Content.Client/EntryPoint.cs @@ -1,4 +1,6 @@ using SS14.Shared.ContentPack; +using SS14.Shared.Interfaces.GameObjects; +using SS14.Shared.IoC; namespace Content.Client { @@ -6,7 +8,10 @@ namespace Content.Client { public override void Init() { - // TODO: Anything at all. + var factory = IoCManager.Resolve(); + + factory.RegisterIgnore("Inventory"); + factory.RegisterIgnore("Item"); } } }