Files
wwdpublic/Content.Shared/Damage/Components/IgnoreSlowOnDamageComponent.cs
Nemanja 398fc5cd98 Hivelord mob (#31322)
* Hivelord

* make it longah

(cherry picked from commit e510504596f992744cfe62cdf26aa12f38ff6aa2)
2025-07-19 15:43:29 +10:00

10 lines
353 B
C#

using Robust.Shared.GameStates;
namespace Content.Shared.Damage.Components;
/// <summary>
/// This is used for an effect that nullifies <see cref="SlowOnDamageComponent"/> and adds an alert.
/// </summary>
[RegisterComponent, NetworkedComponent, Access(typeof(SlowOnDamageSystem))]
public sealed partial class IgnoreSlowOnDamageComponent : Component;