Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
22 lines
622 B
C#
22 lines
622 B
C#
using System;
|
||
using Content.Server.Objectives.Interfaces;
|
||
using Content.Server.Traitor;
|
||
using Robust.Shared.Serialization.Manager.Attributes;
|
||
using Robust.Shared.GameObjects;
|
||
using Content.Server.GameTicking.Rules;
|
||
|
||
namespace Content.Server.Objectives.Requirements
|
||
{
|
||
[DataDefinition]
|
||
public class MultipleTraitorsRequirement : IObjectiveRequirement
|
||
{
|
||
[DataField("traitors")]
|
||
private readonly int _requiredTraitors = 2;
|
||
|
||
public bool CanBeAssigned(Mind.Mind mind)
|
||
{
|
||
return EntitySystem.Get<TraitorRuleSystem>().TotalTraitors >= _requiredTraitors;
|
||
}
|
||
}
|
||
}
|