From: GreyMario Date: Tue, 9 Jan 2024 07:33:17 +0000 (-0800) Subject: Checking for used utensils actually happens now (#23766) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=f2647ac8d421642420b53ea5574f654390039d7b;p=space-station-14.git Checking for used utensils actually happens now (#23766) checking for utensils actually happens now --- 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))