Co-authored-by: ShadowCommander <10494922+ShadowCommander@users.noreply.github.com> Co-authored-by: DrSmugleaf <DrSmugleaf@users.noreply.github.com>
26 lines
754 B
C#
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;
|
|
}
|
|
}
|
|
}
|