diff --git a/code/modules/food_and_drinks/food/customizables.dm b/code/modules/food_and_drinks/food/customizables.dm
index 01db2bfef50..a220223b157 100644
--- a/code/modules/food_and_drinks/food/customizables.dm
+++ b/code/modules/food_and_drinks/food/customizables.dm
@@ -336,6 +336,12 @@ do {\
/obj/item/food/snacks/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/food/snacks))
to_chat(user, "[I] isn't exactly something that you would want to eat.")
return