diff --git a/code/modules/food_and_drinks/food/customizables.dm b/code/modules/food_and_drinks/food/customizables.dm
index 3df6580452a..c048f8c3fc8 100644
--- a/code/modules/food_and_drinks/food/customizables.dm
+++ b/code/modules/food_and_drinks/food/customizables.dm
@@ -336,11 +336,10 @@ do {\
/obj/item/food/customizable/attackby(obj/item/I, mob/user, params)
- if(is_pen(I))
- var/new_name = rename_interactive(user, I, use_prefix = FALSE)
- if(!isnull(new_name))
- to_chat(user, "You declare this to be \a [name]. Delicious!")
- return
+ ..()
+
+ if(istype(I, /obj/item/kitchen/utensil) || is_pen(I))
+ return
if(!istype(I, /obj/item/food))
to_chat(user, "[I] isn't exactly something that you would want to eat.")
diff --git a/code/modules/food_and_drinks/food_base.dm b/code/modules/food_and_drinks/food_base.dm
index 34faf1426a2..5290fcd736e 100644
--- a/code/modules/food_and_drinks/food_base.dm
+++ b/code/modules/food_and_drinks/food_base.dm
@@ -198,8 +198,8 @@
return
user.visible_message( \
- "[user] scoops up some [src] with \the [U]!", \
- "You scoop up some [src] with \the [U]!" \
+ "[user] scoops up some [name] with [U]!", \
+ "You scoop up some [name] with [U]!" \
)
bitecount++