From a807a568a5caf6d652bfc7ff653c85b17f051dae Mon Sep 17 00:00:00 2001 From: DragonTrance Date: Wed, 23 Dec 2020 11:48:53 -0700 Subject: [PATCH] i feel like it shouldnt produce miasma while dead --- code/modules/hydroponics/grown/misc.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/hydroponics/grown/misc.dm b/code/modules/hydroponics/grown/misc.dm index 89b27cee..2fcd0867 100644 --- a/code/modules/hydroponics/grown/misc.dm +++ b/code/modules/hydroponics/grown/misc.dm @@ -49,7 +49,7 @@ /obj/item/seeds/starthistle/corpse_flower/process() var/obj/machinery/hydroponics/parent = loc - if(parent.age < maturation) // Start a little before it blooms + if(parent.age < maturation || parent.dead) // Start a little before it blooms return var/turf/open/T = get_turf(parent)