Fixes potatoes not becoming potato batteries (#30251)

* Update potato.dm

* e
This commit is contained in:
CRUNCH
2025-08-27 21:06:27 +01:00
committed by GitHub
parent 918c267e43
commit 6bf1906823
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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, "<span class='notice'>You cut the potato into wedges with [used].</span>")
var/obj/item/food/grown/potato/wedges/W = new /obj/item/food/grown/potato/wedges
+1 -1
View File
@@ -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, "<span class='notice'>You carve a face into [src] with [used].</span>")
new carved_type(user.loc)
+1 -1
View File
@@ -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, "<span class='notice'>You sharpen [src] into a shiv with [used].</span>")
var/obj/item/kitchen/knife/shiv/carrot/shiv = new ()