diff --git a/code/modules/clothing/suits/hood.dm b/code/modules/clothing/suits/hood.dm index c784306cf66..3718a16602c 100644 --- a/code/modules/clothing/suits/hood.dm +++ b/code/modules/clothing/suits/hood.dm @@ -5,6 +5,24 @@ var/obj/item/clothing/head/hood var/hoodtype = /obj/item/clothing/head/winterhood //so the chaplain hoodie or other hoodies can override this +/obj/item/clothing/head/chaplain_hood + flags = NODROP + +/obj/item/clothing/head/nun_hood + flags = NODROP + +/obj/item/clothing/head/monk_hood + flags = NODROP + +/obj/item/clothing/head/culthood + flags = NODROP + +/obj/item/clothing/head/culthood/alt + flags = NODROP + +/obj/item/clothing/head/berserkerhood + flags = NODROP + /obj/item/clothing/suit/hooded/New() MakeHood() ..() diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index 70b427e0335..5166e198e64 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ diff --git a/icons/obj/clothing/suits.dmi b/icons/obj/clothing/suits.dmi index 156419b1bf8..049d5d93f6f 100644 Binary files a/icons/obj/clothing/suits.dmi and b/icons/obj/clothing/suits.dmi differ