Merge pull request #8477 from deathride58/portsnerditems

Ports the zulie cloak and blackredgold coat donor items from RP
This commit is contained in:
kevinz000
2019-05-31 17:58:48 -07:00
committed by GitHub
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()
..()