Ignore item and inventory client side.

This commit is contained in:
PJB3005
2017-09-26 19:59:31 +02:00
parent c85436118a
commit a464acf354

View File

@@ -1,4 +1,6 @@
using SS14.Shared.ContentPack; using SS14.Shared.ContentPack;
using SS14.Shared.Interfaces.GameObjects;
using SS14.Shared.IoC;
namespace Content.Client namespace Content.Client
{ {
@@ -6,7 +8,10 @@ namespace Content.Client
{ {
public override void Init() public override void Init()
{ {
// TODO: Anything at all. var factory = IoCManager.Resolve<IComponentFactory>();
factory.RegisterIgnore("Inventory");
factory.RegisterIgnore("Item");
} }
} }
} }