mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-26 18:17:12 +03:00
* Pacifism rework * grammar (cherry picked from commit faca1d7043927b502afb3f0ee2e362e01516eaef)
14 lines
501 B
C#
14 lines
501 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.CombatMode.Pacification;
|
|
|
|
/// <summary>
|
|
/// This is used for marking entities which could cause serious harm if attacked and should not be able to be harmed by
|
|
/// pacifists.
|
|
/// TODO ideally destructible is shared + converted to components so we can just check for a harmful damage trigger instead of this.
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class PacifismDangerousAttackComponent : Component
|
|
{
|
|
}
|