Prediction for use of utensil on incompatible food (#38297)

Prediction our beloved
This commit is contained in:
Qerd
2025-06-12 18:48:28 -07:00
committed by GitHub
parent 82f598a087
commit eab797939b

View File

@@ -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);
}