Files
tbd-station-14/Content.Server/NPC/HTN/Preconditions/KeyExistsPrecondition.cs

12 lines
308 B
C#

namespace Content.Server.NPC.HTN.Preconditions;
public sealed partial class KeyExistsPrecondition : HTNPrecondition
{
[DataField("key", required: true)] public string Key = string.Empty;
public override bool IsMet(NPCBlackboard blackboard)
{
return blackboard.ContainsKey(Key);
}
}