diff --git a/code/modules/hydroponics/grown/potato.dm b/code/modules/hydroponics/grown/potato.dm index c830477fd79..62da9fbe541 100644 --- a/code/modules/hydroponics/grown/potato.dm +++ b/code/modules/hydroponics/grown/potato.dm @@ -37,7 +37,7 @@ /obj/item/food/grown/potato/item_interaction(mob/living/user, obj/item/used, list/modifiers) if(!used.sharp) - return NONE + return ..() to_chat(user, "You cut the potato into wedges with [used].") var/obj/item/food/grown/potato/wedges/W = new /obj/item/food/grown/potato/wedges diff --git a/code/modules/hydroponics/grown/pumpkin.dm b/code/modules/hydroponics/grown/pumpkin.dm index 74b175b11b9..d0cfa79b5a2 100644 --- a/code/modules/hydroponics/grown/pumpkin.dm +++ b/code/modules/hydroponics/grown/pumpkin.dm @@ -30,7 +30,7 @@ /obj/item/food/grown/pumpkin/item_interaction(mob/living/user, obj/item/used, list/modifiers) if(!used.sharp) - return NONE + return ..() to_chat(user, "You carve a face into [src] with [used].") new carved_type(user.loc) diff --git a/code/modules/hydroponics/grown/root.dm b/code/modules/hydroponics/grown/root.dm index 2ff7e5f65a9..01e1ee00928 100644 --- a/code/modules/hydroponics/grown/root.dm +++ b/code/modules/hydroponics/grown/root.dm @@ -31,7 +31,7 @@ /obj/item/food/grown/carrot/item_interaction(mob/living/user, obj/item/used, list/modifiers) if(!used.sharp) - return NONE + return ..() to_chat(user, "You sharpen [src] into a shiv with [used].") var/obj/item/kitchen/knife/shiv/carrot/shiv = new ()