From 23d8b92f9403adb7591e464d804bd79e31af09f2 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Sun, 5 May 2019 13:08:56 +0200 Subject: [PATCH] Implement updates to containers for ContainerSlot. --- Content.Server/GameObjects/ContainerSlot.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Content.Server/GameObjects/ContainerSlot.cs b/Content.Server/GameObjects/ContainerSlot.cs index d8104c1f78..390342b523 100644 --- a/Content.Server/GameObjects/ContainerSlot.cs +++ b/Content.Server/GameObjects/ContainerSlot.cs @@ -38,12 +38,14 @@ namespace Content.Server.GameObjects protected override void InternalInsert(IEntity toinsert) { ContainedEntity = toinsert; + base.InternalInsert(toinsert); } /// protected override void InternalRemove(IEntity toremove) { ContainedEntity = null; + base.InternalRemove(toremove); } public override void Shutdown()