From cf44be654887c4ae7df8e8ab0657705f74cc88c2 Mon Sep 17 00:00:00 2001 From: rroqc Date: Tue, 30 Jul 2024 17:26:16 -0300 Subject: [PATCH] [No GBP] Fixes Bad Botany Bug (#85400) ## About The Pull Request fixes a really bad bug i introduced with my previous PR, no proper instantiation of gene objects https://github.com/tgstation/tgstation/pull/85329 would be nice to get this merged fast --- code/modules/hydroponics/seeds.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/hydroponics/seeds.dm b/code/modules/hydroponics/seeds.dm index 101239d8d31aa..18197c006b51e 100644 --- a/code/modules/hydroponics/seeds.dm +++ b/code/modules/hydroponics/seeds.dm @@ -638,5 +638,5 @@ if(length(valid_reagents)) // pick a valid reagent that our receptor seed don't have and add the gene to it var/datum/plant_gene/reagent/selected_reagent = pick(valid_reagents) - genes += selected_reagent + genes += selected_reagent.Copy() reagents_from_genes()