From aea78dc45a8bf914ff237d258b3241c99e91bcd8 Mon Sep 17 00:00:00 2001 From: phil235 Date: Wed, 11 Jun 2014 20:11:10 +0200 Subject: [PATCH] Fix hardhat sprite not updating --- code/modules/clothing/head/hardhat.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/clothing/head/hardhat.dm b/code/modules/clothing/head/hardhat.dm index 81f93572029..cb1665dea93 100644 --- a/code/modules/clothing/head/hardhat.dm +++ b/code/modules/clothing/head/hardhat.dm @@ -17,6 +17,7 @@ on = !on icon_state = "hardhat[on]_[item_color]" item_state = "hardhat[on]_[item_color]" + user.update_inv_head() //so our mob-overlays update if(on) user.AddLuminosity(brightness_on) else user.AddLuminosity(-brightness_on)