From 828d1627a36d5c56f4e01503fcf6262eebff9128 Mon Sep 17 00:00:00 2001 From: ikarrus Date: Tue, 26 Aug 2014 10:51:20 -0600 Subject: [PATCH] code optimization --- code/modules/admin/topic.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm index b1261b8000b..1ae6aa39a33 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -1587,8 +1587,8 @@ if(result) log_admin("[key_name(usr)] turned all humans into [result]", 1) message_admins("\blue [key_name_admin(usr)] turned all humans into [result]", 1) + var/newtype = species_list[result] for(var/mob/living/carbon/human/H in mob_list) - var/newtype = species_list[result] H.dna.species = new newtype() H.regenerate_icons() if("corgi")