mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
16 lines
476 B
C#
16 lines
476 B
C#
using Robust.Shared.Containers;
|
|
using Robust.Shared.GameObjects;
|
|
using Robust.Shared.Log;
|
|
|
|
namespace Robust.Server.Containers
|
|
{
|
|
public sealed class ContainerSystem : SharedContainerSystem
|
|
{
|
|
protected override void ValidateMissingEntity(EntityUid uid, BaseContainer cont, EntityUid missing)
|
|
{
|
|
Log.Error($"Missing entity for container {ToPrettyString(uid)}. Missing uid: {missing}");
|
|
//cont.InternalRemove(ent);
|
|
}
|
|
}
|
|
}
|