diff --git a/Content.Shared/Atmos/Rotting/SharedRottingSystem.cs b/Content.Shared/Atmos/Rotting/SharedRottingSystem.cs index 5fd9aaf3e2..3007da55df 100644 --- a/Content.Shared/Atmos/Rotting/SharedRottingSystem.cs +++ b/Content.Shared/Atmos/Rotting/SharedRottingSystem.cs @@ -25,7 +25,6 @@ public abstract class SharedRottingSystem : EntitySystem SubscribeLocalEvent(OnMobStateChanged); SubscribeLocalEvent(OnPerishableExamined); - SubscribeLocalEvent(OnShutdown); SubscribeLocalEvent(OnRottingMobStateChanged); SubscribeLocalEvent(OnRejuvenate); SubscribeLocalEvent(OnExamined); @@ -63,14 +62,6 @@ public abstract class SharedRottingSystem : EntitySystem args.PushMarkup(Loc.GetString(description, ("target", Identity.Entity(perishable, EntityManager)))); } - private void OnShutdown(Entity ent, ref ComponentShutdown args) - { - if (TryComp(ent, out var perishable)) - { - perishable.RotNextUpdate = TimeSpan.Zero; - } - } - private void OnRottingMobStateChanged(EntityUid uid, RottingComponent component, MobStateChangedEvent args) { if (args.NewMobState == MobState.Dead)