From 7aed9af957d4b72590b6eef3b132392ab23953de Mon Sep 17 00:00:00 2001 From: Atermonera Date: Tue, 21 Feb 2023 21:20:56 -0800 Subject: [PATCH 1/2] Merge pull request #8965 from Atermonera/fix_hooded_suit_kit Suit kits no longer set item_state on hooded clothes --- code/game/objects/items/paintkit.dm | 2 -- 1 file changed, 2 deletions(-) diff --git a/code/game/objects/items/paintkit.dm b/code/game/objects/items/paintkit.dm index 33ca335a9fc..3367574393f 100644 --- a/code/game/objects/items/paintkit.dm +++ b/code/game/objects/items/paintkit.dm @@ -98,10 +98,8 @@ suit.desc = new_desc suit.icon_state = "[new_icon]_suit" suit.toggleicon = "[new_icon]_suit" - suit.item_state = "[new_icon]_suit" var/obj/item/clothing/head/hood/S = suit.hood S.icon_state = "[new_icon]_helmet" - S.item_state = "[new_icon]_helmet" if(new_icon_file) suit.icon = new_icon_file S.icon = new_icon_file