Undo effect logging changes (#40919)

* Undo effect logging changes

* remove ShouldLog
This commit is contained in:
Leon Friedrich
2025-10-15 19:15:05 +13:00
committed by GitHub
parent e92b48c1fa
commit c83b8c2cf8
6 changed files with 15 additions and 29 deletions

View File

@@ -1,4 +1,5 @@
using Robust.Shared.Prototypes;
using Content.Shared.Database;
using Robust.Shared.Prototypes;
namespace Content.Shared.EntityEffects.Effects.Atmos;
@@ -24,5 +25,5 @@ public sealed partial class Flammable : EntityEffectBase<Flammable>
public override string EntityEffectGuidebookText(IPrototypeManager prototype, IEntitySystemManager entSys)
=> Loc.GetString("entity-effect-guidebook-flammable-reaction", ("chance", Probability));
public override bool ShouldLog => true;
public override LogImpact? Impact => LogImpact.Low;
}