mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-20 19:44:09 +01:00
Fixes potatoes not becoming potato batteries (#30251)
* Update potato.dm * e
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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 ()
|
||||
|
||||
Reference in New Issue
Block a user