From d249a7994e29eac3edade396500440bac88a0906 Mon Sep 17 00:00:00 2001 From: ZomgPonies Date: Thu, 7 May 2015 15:49:33 -0400 Subject: [PATCH] Made greyshirts look like greyshirt --- code/modules/mob/living/carbon/superheroes.dm | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/superheroes.dm b/code/modules/mob/living/carbon/superheroes.dm index 8e7d9b2637d..df274a45d0f 100644 --- a/code/modules/mob/living/carbon/superheroes.dm +++ b/code/modules/mob/living/carbon/superheroes.dm @@ -191,10 +191,15 @@ ticker.mode.greyshirts += target.mind target.set_species("Human") target.h_style = "Bald" - target.fully_replace_character_name(target.real_name, "Generic Henchman ([rand(1, 1000)])") + target.f_style = "Shaved" + target.s_tone = 35 + target.r_eyes = 1 + target.b_eyes = 1 + target.g_eyes = 1 for(var/obj/item/W in target) if(istype(W,/obj/item/organ)) continue target.unEquip(W) + target.fully_replace_character_name(target.real_name, "Generic Henchman ([rand(1, 1000)])") target.equip_to_slot_or_del(new /obj/item/clothing/under/color/grey/greytide(target), slot_w_uniform) target.equip_to_slot_or_del(new /obj/item/clothing/shoes/black/greytide(target), slot_shoes) target.equip_to_slot_or_del(new /obj/item/weapon/storage/toolbox/mechanical/greytide(target), slot_l_hand)