From d9b9e4afc3902d1cb5ecea30cce9fd42d8654ade Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Mon, 4 Mar 2019 09:59:26 +0100 Subject: [PATCH] Carrying the icon to the item state --- .../clothing/spacesuits/rig/rig_unify_ch.dm | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/code/modules/clothing/spacesuits/rig/rig_unify_ch.dm b/code/modules/clothing/spacesuits/rig/rig_unify_ch.dm index 61a961d897..9a9f1ef068 100644 --- a/code/modules/clothing/spacesuits/rig/rig_unify_ch.dm +++ b/code/modules/clothing/spacesuits/rig/rig_unify_ch.dm @@ -115,3 +115,20 @@ icon = 'icons/obj/rig_override_modules.dmi' icon_state = "override_rig_gauntlets" //this is experimental name = "gloves" +//Will be modified once we start adding actual fursuits in here +/obj/item/weapon/rig/override/New() + ..() + icon_state = "override_rig_suit" //for now +/obj/item/clothing/head/helmet/space/rig/override/New() + ..() + icon_state = item_state +/obj/item/clothing/suit/space/rig/override/New() + ..() + icon_state = item_state +/obj/item/clothing/gloves/gauntlets/rig/override/New() + ..() + icon_state = item_state +/obj/item/clothing/shoes/magboots/rig/override/New() + ..() + icon_state = item_state +//Lazy sprite fix end