* add ConvertedCount field to role * make objectives roundend title logic reusable * change rev system + use GetTitle --------- Co-authored-by: deltanedas <@deltanedas:kde.org>
17 lines
447 B
C#
17 lines
447 B
C#
using Content.Shared.Roles;
|
|
|
|
namespace Content.Server.Roles;
|
|
|
|
/// <summary>
|
|
/// Added to mind entities to tag that they are a Revolutionary.
|
|
/// </summary>
|
|
[RegisterComponent]
|
|
public sealed partial class RevolutionaryRoleComponent : AntagonistRoleComponent
|
|
{
|
|
/// <summary>
|
|
/// For headrevs, how many people you have converted.
|
|
/// </summary>
|
|
[DataField, ViewVariables(VVAccess.ReadWrite)]
|
|
public uint ConvertedCount = 0;
|
|
}
|