From 750f97444e912a9a7e7d2c9f5362940c0fe4da6c Mon Sep 17 00:00:00 2001 From: Tupinambis Date: Thu, 23 Aug 2018 18:09:07 -0500 Subject: [PATCH] Nuclear Operatives are now able to be any roundstart species except plasmamen. Snowflakes rejoice. --- code/modules/antagonists/nukeop/nukeop.dm | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/code/modules/antagonists/nukeop/nukeop.dm b/code/modules/antagonists/nukeop/nukeop.dm index db25adcda4..03572ee4b7 100644 --- a/code/modules/antagonists/nukeop/nukeop.dm +++ b/code/modules/antagonists/nukeop/nukeop.dm @@ -32,9 +32,14 @@ return var/mob/living/carbon/human/H = owner.current - H.set_species(/datum/species/human) //Plasamen burn up otherwise, and lizards are vulnerable to asimov AIs - H.equipOutfit(nukeop_outfit) + + if(!isplasmaman(owner.current)) + return + var/mob/living/carbon/human/plasma = owner.current + + plasma.set_species(/datum/species/human) //Plasmamen burn up otherwise. + return TRUE /datum/antagonist/nukeop/greet()