/* * This file is sublicensed under MIT License * https://github.com/space-wizards/space-station-14/blob/master/LICENSE.TXT */ using Content.Shared.Chemistry.Components; using Content.Shared.Tag; using Robust.Shared.Prototypes; namespace Content.Shared._CP14.Cooking.Requirements; public sealed partial class AlwaysMet : CP14CookingCraftRequirement { public override bool CheckRequirement(IEntityManager entManager, IPrototypeManager protoManager, List> placedTags, Solution? solution = null) { return true; } public override float GetComplexity() { return 0; } }