Fixes assistants spawning naked

This commit is contained in:
oranges
2017-12-29 17:11:05 -06:00
committed by CitadelStationBot
parent 48e0c47410
commit a958de3d96
2 changed files with 19 additions and 0 deletions
+9
View File
@@ -205,9 +205,18 @@
/obj/item/clothing/gloves/color/brown = 1)
var/obj/item/clothing/gloves/color/selected = pick(gloves)
<<<<<<< HEAD
name = initial(selected.name)
desc = initial(selected.desc)
icon_state = initial(selected.icon_state)
item_state = initial(selected.item_state)
item_color = initial(selected.item_color)
=======
if(ishuman(loc))
var/mob/living/carbon/human/H = loc
H.equip_to_slot_or_del(new selected(H), slot_gloves)
else
new selected(loc)
return INITIALIZE_HINT_QDEL
>>>>>>> c063902... Merge pull request #33930 from ShizCalev/undersuit-fix