2022-06-24 17:44:30 +10:00
|
|
|
using Content.Shared.Spawners.EntitySystems;
|
|
|
|
|
|
|
|
|
|
namespace Content.Client.Spawners;
|
|
|
|
|
|
|
|
|
|
public sealed class TimedDespawnSystem : SharedTimedDespawnSystem
|
|
|
|
|
{
|
|
|
|
|
protected override bool CanDelete(EntityUid uid)
|
|
|
|
|
{
|
2023-09-11 09:42:41 +10:00
|
|
|
return IsClientSide(uid);
|
2022-06-24 17:44:30 +10:00
|
|
|
}
|
|
|
|
|
}
|