diff --git a/code/modules/clothing/glasses/glasses.dm b/code/modules/clothing/glasses/glasses.dm index 00bd068e067..140b5f1a999 100644 --- a/code/modules/clothing/glasses/glasses.dm +++ b/code/modules/clothing/glasses/glasses.dm @@ -327,8 +327,8 @@ flash_protect = 0 tint = 0 var/mob/living/carbon/user = usr - user.update_inv_glasses() user.update_tint() + user.update_inv_glasses() for(var/X in actions) var/datum/action/A = X @@ -492,4 +492,4 @@ else to_chat(user, "The eye winks at you and vanishes into the abyss, you feel really unlucky.") qdel(src) - ..() \ No newline at end of file + ..() \ No newline at end of file diff --git a/code/modules/clothing/head/misc_special.dm b/code/modules/clothing/head/misc_special.dm index 67e4f697eff..4d9970adba3 100644 --- a/code/modules/clothing/head/misc_special.dm +++ b/code/modules/clothing/head/misc_special.dm @@ -67,9 +67,9 @@ to_chat(usr, "You push the [src] up out of your face.") flash_protect = 0 tint = 0 - var/mob/living/carbon/C = usr - C.update_tint() - usr.update_inv_head() //so our mob-overlays update + var/mob/living/carbon/user = usr + user.update_tint() + user.update_inv_head() //so our mob-overlays update for(var/X in actions) var/datum/action/A = X diff --git a/code/modules/clothing/masks/gasmask.dm b/code/modules/clothing/masks/gasmask.dm index e539b2cae77..2b84cafff41 100644 --- a/code/modules/clothing/masks/gasmask.dm +++ b/code/modules/clothing/masks/gasmask.dm @@ -52,7 +52,9 @@ to_chat(usr, "You push the [src] up out of your face.") flash_protect = 0 tint = 0 - usr.update_inv_wear_mask() //so our mob-overlays update + var/mob/living/carbon/user = usr + user.update_tint() + user.update_inv_wear_mask() //so our mob-overlays update for(var/X in actions) var/datum/action/A = X