From 6bf1906823431de2b71b2995d94c60e04f0d9167 Mon Sep 17 00:00:00 2001
From: CRUNCH <143041327+Fordoxia@users.noreply.github.com>
Date: Wed, 27 Aug 2025 21:06:27 +0100
Subject: [PATCH] Fixes potatoes not becoming potato batteries (#30251)
* Update potato.dm
* e
---
code/modules/hydroponics/grown/potato.dm | 2 +-
code/modules/hydroponics/grown/pumpkin.dm | 2 +-
code/modules/hydroponics/grown/root.dm | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
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 ()