* move faction prototype to shared * move faction exception and member stuff to shared * fix breaking changes for random stuff * move pettable friend stuff to shared * mostly fix * final fixy * dragonops * final fixy II * use querys and fix warpspeed fish (probably) * fixer * Rrrr! --------- Co-authored-by: deltanedas <@deltanedas:kde.org> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
18 lines
573 B
C#
18 lines
573 B
C#
using Content.Shared.NPC.Systems;
|
|
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared.NPC.Components;
|
|
|
|
/// <summary>
|
|
/// This is used for tracking entities stored in <see cref="FactionExceptionComponent"/>.
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent, Access(typeof(NpcFactionSystem))]
|
|
public sealed partial class FactionExceptionTrackerComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// Entities with <see cref="FactionExceptionComponent"/> that are tracking this entity.
|
|
/// </summary>
|
|
[DataField]
|
|
public HashSet<EntityUid> Entities = new();
|
|
}
|