using Content.Shared.Temperature; using Content.Shared.Temperature.Components; namespace Content.Shared.Temperature.Systems; public sealed class AlwaysHotSystem : EntitySystem { public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnIsHot); } private void OnIsHot(Entity ent, ref IsHotEvent args) { args.IsHot = true; } }