From 873e67f79cc495409013cd18ea4a6f0de469594e Mon Sep 17 00:00:00 2001 From: Ghom <42542238+Ghommie@users.noreply.github.com> Date: Mon, 13 Apr 2020 14:57:47 +0200 Subject: [PATCH 1/2] Update hardsuit.dm --- code/modules/clothing/spacesuits/hardsuit.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/clothing/spacesuits/hardsuit.dm b/code/modules/clothing/spacesuits/hardsuit.dm index a1deb8ad30..ad30bde78d 100644 --- a/code/modules/clothing/spacesuits/hardsuit.dm +++ b/code/modules/clothing/spacesuits/hardsuit.dm @@ -30,6 +30,7 @@ /obj/item/clothing/head/helmet/space/hardsuit/attack_self(mob/user) on = !on + update_icon() user.update_inv_head() //so our mob-overlays update if(on) set_light(brightness_on) From 5765ceb316cc91dd5513834edaf8198e6e336477 Mon Sep 17 00:00:00 2001 From: Ghom <42542238+Ghommie@users.noreply.github.com> Date: Mon, 13 Apr 2020 15:02:01 +0200 Subject: [PATCH 2/2] Update hardsuit.dm --- code/modules/clothing/spacesuits/hardsuit.dm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/code/modules/clothing/spacesuits/hardsuit.dm b/code/modules/clothing/spacesuits/hardsuit.dm index ad30bde78d..42a162d730 100644 --- a/code/modules/clothing/spacesuits/hardsuit.dm +++ b/code/modules/clothing/spacesuits/hardsuit.dm @@ -30,8 +30,7 @@ /obj/item/clothing/head/helmet/space/hardsuit/attack_self(mob/user) on = !on - update_icon() - user.update_inv_head() //so our mob-overlays update + update_icon() //the mob overlay update is already done by the update_icon_updates_onmob element. if(on) set_light(brightness_on) else