From: themias <89101928+themias@users.noreply.github.com> Date: Tue, 9 Jan 2024 18:17:04 +0000 (-0500) Subject: fix mice eating (#23801) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=3fb0bd9d4b13fe828889b5ce9aea960c89dd5f4d;p=space-station-14.git fix mice eating (#23801) * fix mice eating * actually just ignore utensils --- diff --git a/Content.Server/Nutrition/EntitySystems/FoodSystem.cs b/Content.Server/Nutrition/EntitySystems/FoodSystem.cs index d91fb4404c..70d202932a 100644 --- a/Content.Server/Nutrition/EntitySystems/FoodSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/FoodSystem.cs @@ -426,7 +426,7 @@ public sealed class FoodSystem : EntitySystem return true; if (!Resolve(user, ref hands, false)) - return false; + return true; //mice var usedTypes = UtensilType.None;