mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 17:47:24 +02:00
14 lines
417 B
C#
14 lines
417 B
C#
using Robust.Shared.Containers;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
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);
|
|
}
|
|
}
|