From f2a4eed6a3325d502dc607c1902a28ac61eaba43 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Sun, 23 Aug 2020 20:21:27 +0200 Subject: [PATCH] [MIRROR] Fixes Wild Mutation produce being the wrong size. (#473) * Wild Mutation produce is now the right size. (#53104) * Fixes Wild Mutation produce being the wrong size. Co-authored-by: ArcaneMusic <41715314+ArcaneMusic@users.noreply.github.com> --- code/modules/hydroponics/seeds.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/hydroponics/seeds.dm b/code/modules/hydroponics/seeds.dm index 38389911fc6..1c06ba94237 100644 --- a/code/modules/hydroponics/seeds.dm +++ b/code/modules/hydroponics/seeds.dm @@ -221,6 +221,8 @@ t_prod.seed.name = initial(new_prod.name) t_prod.seed.desc = initial(new_prod.desc) t_prod.seed.plantname = initial(new_prod.plantname) + t_prod.transform = initial(t_prod.transform) + t_prod.transform *= TRANSFORM_USING_VARIABLE(t_prod.seed.potency, 100) + 0.5 t_amount++ if(t_prod.seed) //t_prod.seed = new new_prod