20 lines
448 B
C#
20 lines
448 B
C#
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<AlwaysHotComponent, IsHotEvent>(OnIsHot);
|
|
}
|
|
|
|
private void OnIsHot(Entity<AlwaysHotComponent> ent, ref IsHotEvent args)
|
|
{
|
|
args.IsHot = true;
|
|
}
|
|
}
|