2022-12-14 04:02:02 +11:00
|
|
|
using Robust.Shared.GameStates;
|
|
|
|
|
|
2023-08-05 17:27:12 -04:00
|
|
|
namespace Content.Shared.CombatMode.Pacification;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Status effect that disables combat mode.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[RegisterComponent, NetworkedComponent]
|
|
|
|
|
[Access(typeof(PacificationSystem))]
|
|
|
|
|
public sealed class PacifiedComponent : Component
|
2022-09-05 22:52:58 -04:00
|
|
|
{
|
2022-10-16 07:19:40 +11:00
|
|
|
|
2022-09-05 22:52:58 -04:00
|
|
|
}
|