From 1fd433d7b464e27d990923a9e01afcf8350ea8a3 Mon Sep 17 00:00:00 2001 From: Antoonij <42318445+Antoonij@users.noreply.github.com> Date: Sun, 15 Dec 2024 15:25:18 +0100 Subject: [PATCH] whoops momentfix --- code/modules/station_goals/dna_vault.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/station_goals/dna_vault.dm b/code/modules/station_goals/dna_vault.dm index fc211a945ca..220a4be051b 100644 --- a/code/modules/station_goals/dna_vault.dm +++ b/code/modules/station_goals/dna_vault.dm @@ -338,7 +338,7 @@ GLOBAL_LIST_INIT(non_simple_animals, typecacheof(list(/mob/living/carbon/human/l /obj/machinery/dna_vault/proc/upgrade(mob/living/carbon/human/human, upgrade_name) for(var/datum/vault_gene/gene as anything in subtypesof(/datum/vault_gene)) - if(!initial(gene.name) != upgrade_name) + if(initial(gene.name) != upgrade_name) continue gene.apply(human, name)