Files
OldThink/Content.Client/Spawners/TimedDespawnSystem.cs

12 lines
252 B
C#
Raw Normal View History

using Content.Shared.Spawners.EntitySystems;
namespace Content.Client.Spawners;
public sealed class TimedDespawnSystem : SharedTimedDespawnSystem
{
protected override bool CanDelete(EntityUid uid)
{
return uid.IsClientSide();
}
}