Files
tbd-station-14/Content.Client/Spawners/TimedDespawnSystem.cs
2023-09-11 09:42:41 +10:00

12 lines
251 B
C#

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