Files
tbd-station-14/Content.Server/Objectives/Requirements/IncompatibleObjectivesRequirement.cs

26 lines
754 B
C#

using Content.Server.Mind;
using Content.Server.Objectives.Interfaces;
namespace Content.Server.Objectives.Requirements
{
[DataDefinition]
public sealed partial class IncompatibleObjectivesRequirement : IObjectiveRequirement
{
[DataField("objectives")]
private List<string> _incompatibleObjectives = new();
public bool CanBeAssigned(EntityUid mindId, MindComponent mind)
{
foreach (var objective in mind.AllObjectives)
{
foreach (var incompatibleObjective in _incompatibleObjectives)
{
if (incompatibleObjective == objective.Prototype.ID) return false;
}
}
return true;
}
}
}