diff --git a/code/modules/client/preference_setup/loadout/loadout_head.dm b/code/modules/client/preference_setup/loadout/loadout_head.dm index 65939198a0..906621b33f 100644 --- a/code/modules/client/preference_setup/loadout/loadout_head.dm +++ b/code/modules/client/preference_setup/loadout/loadout_head.dm @@ -126,6 +126,14 @@ ..() gear_tweaks += gear_tweak_free_color_choice +/datum/gear/head/halo + display_name = "halo (colorable)" + path = /obj/item/clothing/head/halo + +/datum/gear/head/halo/New() + ..() + gear_tweaks += gear_tweak_free_color_choice + /datum/gear/head/cap/mbill display_name = "cap, major bill's" path = /obj/item/clothing/head/soft/mbill @@ -436,4 +444,4 @@ /datum/gear/head/wheat display_name = "straw hat" - path = /obj/item/clothing/head/wheat \ No newline at end of file + path = /obj/item/clothing/head/wheat diff --git a/code/modules/clothing/head/misc.dm b/code/modules/clothing/head/misc.dm index d299396f79..3883d9d0e3 100644 --- a/code/modules/clothing/head/misc.dm +++ b/code/modules/clothing/head/misc.dm @@ -10,6 +10,11 @@ desc = "A formal hat for SolGov Customs Officers." icon_state = "customshat" +/obj/item/clothing/head/halo + name = "halo" + desc = "a small metal ring, floating above it's wearer." + icon_state = "halo" + /obj/item/clothing/head/pin icon_state = "pin" addblends = "pin_a" @@ -552,4 +557,4 @@ desc = "Reputed to go faster." icon_state = "redtag" flags_inv = HIDEEARS|BLOCKHEADHAIR - body_parts_covered = HEAD|EYES \ No newline at end of file + body_parts_covered = HEAD|EYES diff --git a/icons/inventory/head/item.dmi b/icons/inventory/head/item.dmi index fd54c269c1..90de50558e 100644 Binary files a/icons/inventory/head/item.dmi and b/icons/inventory/head/item.dmi differ diff --git a/icons/inventory/head/mob.dmi b/icons/inventory/head/mob.dmi index bbe938bd39..27db023df8 100644 Binary files a/icons/inventory/head/mob.dmi and b/icons/inventory/head/mob.dmi differ