diff --git a/code/modules/client/preference_setup/loadout/loadout_head.dm b/code/modules/client/preference_setup/loadout/loadout_head.dm index 2513757c1c..67bfd7c7de 100644 --- a/code/modules/client/preference_setup/loadout/loadout_head.dm +++ b/code/modules/client/preference_setup/loadout/loadout_head.dm @@ -203,6 +203,10 @@ display_name = "hat, tophat" path = /obj/item/clothing/head/that +/datum/gear/head/panama + display_name = "hat, panama" + path = /obj/item/clothing/head/panama + /datum/gear/head/wig/philosopher display_name = "natural philosopher's wig" path = /obj/item/clothing/head/philosopher_wig diff --git a/code/modules/clothing/head/misc.dm b/code/modules/clothing/head/misc.dm index 8636b5b606..9f5ce96020 100644 --- a/code/modules/clothing/head/misc.dm +++ b/code/modules/clothing/head/misc.dm @@ -103,6 +103,11 @@ siemens_coefficient = 0.9 body_parts_covered = 0 +/obj/item/clothing/head/panama + name = "panama hat" + icon_state = "panama" + desc = "Columbian Pure." + /obj/item/clothing/head/redcoat name = "redcoat's hat" icon_state = "redcoat" diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index 1290983bfe..b8478d3ac1 100644 Binary files a/icons/mob/head.dmi and b/icons/mob/head.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index 4951bf32ad..cb4bab1901 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ