mirror of
https://github.com/corvax-team/ss14-wl.git
synced 2026-02-14 19:29:57 +01:00
* KITCHEN 2 * Illuminati * Update Resources/ServerInfo/Guidebook/_WL/Antagonist/Conspirators.xml Co-authored-by: cfif126 <94059374+cfif126@users.noreply.github.com> * Update Resources/ServerInfo/Guidebook/_WL/Antagonist/Conspirators.xml Co-authored-by: cfif126 <94059374+cfif126@users.noreply.github.com> * Update Resources/Locale/ru-RU/_WL/game-ticking/game-presets/preset-conspirator.ftl Co-authored-by: cfif126 <94059374+cfif126@users.noreply.github.com> * Illuminati 2 * Illuminati 3 * Illuminati 4 fix --------- Co-authored-by: cfif126 <94059374+cfif126@users.noreply.github.com>
15 lines
406 B
C#
15 lines
406 B
C#
using Content.Shared.StatusIcon;
|
|
using Robust.Shared.GameStates;
|
|
using Robust.Shared.Prototypes;
|
|
|
|
namespace Content.Shared._WL.Conspirators.Components;
|
|
|
|
[RegisterComponent, NetworkedComponent]
|
|
public sealed partial class ConspiratorComponent : Component
|
|
{
|
|
[DataField]
|
|
public ProtoId<FactionIconPrototype> ConspiratorIcon = "ConspiratorFaction";
|
|
|
|
public override bool SessionSpecific => true;
|
|
}
|