mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-26 01:57:51 +03:00
This cherry-pick's Wizden's Antag Refactor, which is needed for all future antag updates, as well as for me to cherry-pick over Cultists(Who are going to need some editing to fit the antag refactor), Changelings, Heretics, and Wizards. I actually selected the White-Dream-Public version of the Antag Refactor, due to it having commits made tailored to our repository, so it comes prepackaged with all the changes necessary for our repo-specific content. https://github.com/frosty-dev/ss14-wwdp/pull/10 Signed-off-by: Timemaster99 <57200767+Timemaster99@users.noreply.github.com> Co-authored-by: ThereDrD <88589686+ThereDrD0@users.noreply.github.com> Co-authored-by: Jeff <velcroboy333@hotmail.com> Co-authored-by: Timemaster99 <57200767+Timemaster99@users.noreply.github.com> Co-authored-by: Timemaster99 <elijahrobot@gmail.com> Co-authored-by: luckywill339@gmail.com <luckywill339@gmail.com> Co-authored-by: Danger Revolution! <142105406+DangerRevolution@users.noreply.github.com> Co-authored-by: Azzy <azzydev@icloud.com>
23 lines
684 B
C#
23 lines
684 B
C#
using Content.Server.Traitor.Systems;
|
|
|
|
namespace Content.Server.Traitor.Components;
|
|
|
|
/// <summary>
|
|
/// Makes the entity a traitor either instantly if it has a mind or when a mind is added.
|
|
/// </summary>
|
|
[RegisterComponent, Access(typeof(AutoTraitorSystem))]
|
|
public sealed partial class AutoTraitorComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// Whether to give the traitor an uplink or not.
|
|
/// </summary>
|
|
[DataField, ViewVariables(VVAccess.ReadWrite)]
|
|
public bool GiveUplink = true;
|
|
|
|
/// <summary>
|
|
/// Whether to give the traitor objectives or not.
|
|
/// </summary>
|
|
[DataField, ViewVariables(VVAccess.ReadWrite)]
|
|
public bool GiveObjectives = true;
|
|
}
|