Files
crystall-punk-14/Content.Server/_CP14/Temperature/CP14AutoIgniteComponent.cs
Ed 07637bd691 Prototypes cleaning: destructable, flammable (#453)
* damage rethinking, bush fix

* flammable rethink

* trying to fix fire

* airtight false default

* autoignite

* Update fire.yml

* Update fire.yml

* Update fire.yml
2024-09-24 13:46:26 +03:00

15 lines
391 B
C#

namespace Content.Server._CP14.Temperature;
[RegisterComponent, AutoGenerateComponentPause, Access(typeof(CP14FireSpreadSystem))]
public sealed partial class CP14AutoIgniteComponent : Component
{
[DataField]
public float StartStack = 1f;
[DataField]
public TimeSpan IgniteDelay = TimeSpan.FromSeconds(1f);
[DataField]
public TimeSpan IgniteTime = TimeSpan.Zero;
}