From: themias <89101928+themias@users.noreply.github.com> Date: Thu, 1 May 2025 21:56:47 +0000 (-0400) Subject: Fix food slicing showing utensil popup (#37105) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=2699c3f41efc916e1d2b0fa39dc7686689e4ab9e;p=space-station-14.git Fix food slicing showing utensil popup (#37105) Fix knife slicing showing utensil popup --- diff --git a/Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs b/Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs index 5335a9b02b..3f8ec5ca5a 100644 --- a/Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/SliceableFoodSystem.cs @@ -53,7 +53,7 @@ public sealed class SliceableFoodSystem : EntitySystem BreakOnMove = true, NeedHand = true, }; - _doAfter.TryStartDoAfter(doAfterArgs); + args.Handled = _doAfter.TryStartDoAfter(doAfterArgs); } private void OnSlicedoAfter(Entity entity, ref SliceFoodDoAfterEvent args)