From eab797939bad5142f2f8c3fd2f4faa6dd8a36f93 Mon Sep 17 00:00:00 2001 From: Qerd <73325910+BigfootBravo@users.noreply.github.com> Date: Thu, 12 Jun 2025 18:48:28 -0700 Subject: [PATCH] Prediction for use of utensil on incompatible food (#38297) Prediction our beloved --- Content.Shared/Nutrition/EntitySystems/UtensilSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Nutrition/EntitySystems/UtensilSystem.cs b/Content.Shared/Nutrition/EntitySystems/UtensilSystem.cs index e100d25589..431302593d 100644 --- a/Content.Shared/Nutrition/EntitySystems/UtensilSystem.cs +++ b/Content.Shared/Nutrition/EntitySystems/UtensilSystem.cs @@ -44,7 +44,7 @@ public sealed class UtensilSystem : EntitySystem //Prevents food usage with a wrong utensil if ((food.Utensil & utensil.Comp.Types) == 0) { - _popupSystem.PopupEntity(Loc.GetString("food-system-wrong-utensil", ("food", target), ("utensil", utensil.Owner)), user, user); + _popupSystem.PopupClient(Loc.GetString("food-system-wrong-utensil", ("food", target), ("utensil", utensil.Owner)), user, user); return (false, true); } -- 2.51.2