From dd5ea1ac77d35aed1be67ccc49e1a87a98a8ceb4 Mon Sep 17 00:00:00 2001 From: Fluffy <65877598+FluffyGhoster@users.noreply.github.com> Date: Sat, 2 Nov 2024 11:40:18 +0100 Subject: [PATCH] Fixed invisible soil not returning an initialized hint (#20130) Fixed invisible soil not returning an initialized hint No player facing changes --- code/modules/hydroponics/trays/tray_soil.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/hydroponics/trays/tray_soil.dm b/code/modules/hydroponics/trays/tray_soil.dm index 4d55086b2fb..f39ad117bac 100644 --- a/code/modules/hydroponics/trays/tray_soil.dm +++ b/code/modules/hydroponics/trays/tray_soil.dm @@ -51,7 +51,7 @@ icon_state = "blank" /obj/machinery/portable_atmospherics/hydroponics/soil/invisible/Initialize(var/newloc,var/datum/seed/newseed,var/start_mature) - ..() + . = ..() seed = newseed dead = 0 age = start_mature ? seed.get_trait(TRAIT_MATURATION) : 1