6
StarHorizon_Public/Content.Server/_NF/PacifiedZone/PacifiedByZoneComponent.cs
2026-01-13 18:31:02 +02:00

10 lines
343 B
C#

namespace Content.Server._NF.PacifiedZone
{
// Denotes an entity as being pacified by a zone.
// An entity with PacifiedComponent but not PacifiedByZoneComponent is naturally pacified
// (e.g. through Pax, or the Pious trait)
[RegisterComponent]
public sealed partial class PacifiedByZoneComponent : Component
{
}
}