diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm index 5819a5e065..29bf873e45 100644 --- a/code/modules/clothing/suits/miscellaneous.dm +++ b/code/modules/clothing/suits/miscellaneous.dm @@ -798,6 +798,9 @@ obj/item/clothing/suit/storage/toggle/peacoat name = "explorer hood" desc = "An armoured hood for exploring harsh environments." icon_state = "explorer" + brightness_on = 3 + light_overlay = "hood_light" + action_button_name = "Toggle Head-light" body_parts_covered = HEAD cold_protection = HEAD flags = THICKMATERIAL diff --git a/code/modules/clothing/suits/toggles.dm b/code/modules/clothing/suits/toggles.dm index b7b3b2b0b3..81b433fa27 100644 --- a/code/modules/clothing/suits/toggles.dm +++ b/code/modules/clothing/suits/toggles.dm @@ -36,7 +36,7 @@ var/mob/living/carbon/H = hood.loc H.unEquip(hood, 1) H.update_inv_wear_suit() - hood.loc = src + hood.forceMove(src) /obj/item/clothing/suit/storage/hooded/dropped() RemoveHood() diff --git a/icons/mob/light_overlays.dmi b/icons/mob/light_overlays.dmi index e54ec778cd..fb942bbce5 100644 Binary files a/icons/mob/light_overlays.dmi and b/icons/mob/light_overlays.dmi differ