From f2647ac8d421642420b53ea5574f654390039d7b Mon Sep 17 00:00:00 2001 From: GreyMario Date: Mon, 8 Jan 2024 23:33:17 -0800 Subject: [PATCH] Checking for used utensils actually happens now (#23766) checking for utensils actually happens now --- Content.Server/Nutrition/EntitySystems/FoodSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/Nutrition/EntitySystems/FoodSystem.cs b/Content.Server/Nutrition/EntitySystems/FoodSystem.cs index 95a40a9409..d91fb4404c 100644 --- a/Content.Server/Nutrition/EntitySystems/FoodSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/FoodSystem.cs @@ -422,7 +422,7 @@ public sealed class FoodSystem : EntitySystem { utensils = new List(); - if (component.Utensil != UtensilType.None) + if (component.Utensil == UtensilType.None) return true; if (!Resolve(user, ref hands, false)) -- 2.51.2