]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
fix mice eating (#23801)
authorthemias <89101928+themias@users.noreply.github.com>
Tue, 9 Jan 2024 18:17:04 +0000 (13:17 -0500)
committerGitHub <noreply@github.com>
Tue, 9 Jan 2024 18:17:04 +0000 (13:17 -0500)
* fix mice eating

* actually just ignore utensils

Content.Server/Nutrition/EntitySystems/FoodSystem.cs

index d91fb4404ca3be0d646c4e427764c5a183017949..70d202932ac6400755efbb3bc16f6f63119a0da9 100644 (file)
@@ -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;