Files
tbd-station-14/Content.Shared/EntityEffects/Effects/Atmos/IgniteEntityEffect.cs
Leon Friedrich c83b8c2cf8 Undo effect logging changes (#40919)
* Undo effect logging changes

* remove ShouldLog
2025-10-15 06:15:05 +00:00

17 lines
537 B
C#

using Content.Shared.Database;
using Robust.Shared.Prototypes;
namespace Content.Shared.EntityEffects.Effects.Atmos;
/// <summary>
/// See serverside system
/// </summary>
/// <inheritdoc cref="EntityEffect"/>
public sealed partial class Ignite : EntityEffectBase<Ignite>
{
public override string EntityEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys) =>
Loc.GetString("entity-effect-guidebook-ignite", ("chance", Probability));
public override LogImpact? Impact => LogImpact.Medium;
}