diff --git a/code/modules/hydroponics/grown.dm b/code/modules/hydroponics/grown.dm index 7230256a1abb..e13a9c7acc3f 100644 --- a/code/modules/hydroponics/grown.dm +++ b/code/modules/hydroponics/grown.dm @@ -107,6 +107,11 @@ // Various gene procs /obj/item/reagent_containers/food/snacks/grown/attack_self(mob/user) if(seed && seed.get_gene(/datum/plant_gene/trait/squash)) + if(seed.get_gene(/datum/plant_gene/trait/teleport)) + to_chat(user, span_notice("You start squashing the [src]")) + if(do_after(user, 2 SECONDS, src)) + squash(user) + return ..() squash(user) ..()