From 6a0b84f772ae547933cdbfbe82cab671fca652db Mon Sep 17 00:00:00 2001 From: AnturK Date: Sun, 1 Oct 2017 13:26:38 +0200 Subject: [PATCH] This too --- code/modules/hydroponics/grown.dm | 2 +- code/modules/hydroponics/growninedible.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/hydroponics/grown.dm b/code/modules/hydroponics/grown.dm index 5035dd06241..0701820dbfb 100644 --- a/code/modules/hydroponics/grown.dm +++ b/code/modules/hydroponics/grown.dm @@ -17,7 +17,7 @@ resistance_flags = FLAMMABLE origin_tech = "biotech=1" -/obj/item/reagent_containers/food/snacks/grown/Initialize (newloc, var/obj/item/seeds/new_seed) +/obj/item/reagent_containers/food/snacks/grown/Initialize (newloc, obj/item/seeds/new_seed) . = ..() tastes = list("[name]" = 1) // apples taste of apple, silly. if(new_seed) diff --git a/code/modules/hydroponics/growninedible.dm b/code/modules/hydroponics/growninedible.dm index 655b3776766..a77808f0063 100644 --- a/code/modules/hydroponics/growninedible.dm +++ b/code/modules/hydroponics/growninedible.dm @@ -8,7 +8,7 @@ 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/Initialize(newloc, var/obj/item/seeds/new_seed) +/obj/item/grown/Initialize(newloc, obj/item/seeds/new_seed) . = ..() create_reagents(50)