mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 21:48:58 +03:00
* Fix welder ignition * fix mobs on fire hotspot expose frequency * fix shotgun pellets ignition * ensure ignitionComp on flammable init * \n * Revert "ensure ignitionComp on flammable init" This reverts commit 6915dcdc (cherry picked from commit 3f9102839579506e8bf71f5fbf48c92328104e58)
15 lines
459 B
C#
15 lines
459 B
C#
namespace Content.Server.IgnitionSource;
|
|
|
|
/// <summary>
|
|
/// This is used for creating atmosphere hotspots while ignited to start reactions such as fire.
|
|
/// </summary>
|
|
[RegisterComponent, Access(typeof(IgnitionSourceSystem))]
|
|
public sealed partial class IgnitionSourceComponent : Component
|
|
{
|
|
[DataField, ViewVariables(VVAccess.ReadWrite)]
|
|
public bool Ignited;
|
|
|
|
[DataField, ViewVariables(VVAccess.ReadWrite)]
|
|
public int Temperature = 700;
|
|
}
|