From 65d58cdff5ca0e4572b9f12d81e9690bd27a119f Mon Sep 17 00:00:00 2001 From: theo-3 <85434590+theo-3@users.noreply.github.com> Date: Sat, 17 Jul 2021 17:30:36 +0300 Subject: [PATCH] Only show 'remove' if variant != "" --- code/modules/hydroponics/gene_modder.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/hydroponics/gene_modder.dm b/code/modules/hydroponics/gene_modder.dm index 0c32479bb50..a4d728febd4 100644 --- a/code/modules/hydroponics/gene_modder.dm +++ b/code/modules/hydroponics/gene_modder.dm @@ -233,7 +233,8 @@ dat += "

Variant

" dat += "" dat += "" - dat += "" + if(seed.variant != "") + dat += "" dat += "
[(seed.variant == "") ? "None" : seed.variant]EditRemoveRemove
" dat += "

Core Genes

"