From 8546a2ca1f07cb261141e2f5f29e477a7bf864fb Mon Sep 17 00:00:00 2001 From: Luc <89928798+lewcc@users.noreply.github.com> Date: Tue, 21 Nov 2023 08:04:01 -0500 Subject: [PATCH] fixes acid peels (#23298) --- code/modules/hydroponics/growninedible.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/hydroponics/growninedible.dm b/code/modules/hydroponics/growninedible.dm index 9190650405f..ccf5a753bb5 100644 --- a/code/modules/hydroponics/growninedible.dm +++ b/code/modules/hydroponics/growninedible.dm @@ -8,8 +8,8 @@ resistance_flags = FLAMMABLE var/obj/item/seeds/seed = null // type path, gets converted to item on New(). It's safe to assume it's always a seed item. -/obj/item/grown/New(newloc, obj/item/seeds/new_seed = null) - ..() +/obj/item/grown/Initialize(mapload, newloc, obj/item/seeds/new_seed = null) + . = ..() create_reagents(50) if(new_seed)