Implement updates to containers for ContainerSlot.

This commit is contained in:
Pieter-Jan Briers
2019-05-05 13:08:56 +02:00
parent 5a5e201c7c
commit 23d8b92f94

View File

@@ -38,12 +38,14 @@ namespace Content.Server.GameObjects
protected override void InternalInsert(IEntity toinsert)
{
ContainedEntity = toinsert;
base.InternalInsert(toinsert);
}
/// <inheritdoc />
protected override void InternalRemove(IEntity toremove)
{
ContainedEntity = null;
base.InternalRemove(toremove);
}
public override void Shutdown()