12 lines
252 B
C#
12 lines
252 B
C#
|
|
using Content.Shared.Spawners.EntitySystems;
|
||
|
|
|
||
|
|
namespace Content.Client.Spawners;
|
||
|
|
|
||
|
|
public sealed class TimedDespawnSystem : SharedTimedDespawnSystem
|
||
|
|
{
|
||
|
|
protected override bool CanDelete(EntityUid uid)
|
||
|
|
{
|
||
|
|
return uid.IsClientSide();
|
||
|
|
}
|
||
|
|
}
|