Ports the zulie cloak and blackredgold coat donor items from RP

This commit is contained in:
deathride58
2019-05-28 19:38:08 -04:00
parent 0c644995a5
commit 3feb11f12a
5 changed files with 46 additions and 3 deletions
+2 -2
View File
@@ -24,11 +24,11 @@
ToggleHood()
/obj/item/clothing/suit/hooded/item_action_slot_check(slot, mob/user)
if(slot == SLOT_WEAR_SUIT)
if(slot == SLOT_WEAR_SUIT || slot == SLOT_NECK)
return 1
/obj/item/clothing/suit/hooded/equipped(mob/user, slot)
if(slot != SLOT_WEAR_SUIT)
if(slot != SLOT_WEAR_SUIT && slot != SLOT_NECK)
RemoveHood()
..()