diff --git a/icons/map_icons/clothing/suit/_suit.dmi b/icons/map_icons/clothing/suit/_suit.dmi index 64f61e70a45..68c1fd0adba 100644 Binary files a/icons/map_icons/clothing/suit/_suit.dmi and b/icons/map_icons/clothing/suit/_suit.dmi differ diff --git a/modular_skyrat/master_files/code/modules/clothing/under/shorts_pants.dm b/modular_skyrat/master_files/code/modules/clothing/under/shorts_pants.dm index b1813716c63..cd95b94a38b 100644 --- a/modular_skyrat/master_files/code/modules/clothing/under/shorts_pants.dm +++ b/modular_skyrat/master_files/code/modules/clothing/under/shorts_pants.dm @@ -43,7 +43,7 @@ name = "yoga pants" desc = "Breathable and stretchy, perfect for exercising comfortably!" icon = 'icons/map_icons/clothing/under/_under.dmi' - icon_state = "" + icon_state = "/obj/item/clothing/under/pants/skyrat/yoga" post_init_icon_state = "yoga_pants" greyscale_config = /datum/greyscale_config/yoga_pants //These configs are defined in the GAGS module for now; the icons and item will remain in these files. greyscale_config_worn = /datum/greyscale_config/yoga_pants/worn diff --git a/modular_skyrat/modules/customization/modules/clothing/~donator/donator_clothing.dm b/modular_skyrat/modules/customization/modules/clothing/~donator/donator_clothing.dm index 6104edfbd27..e93a4150baf 100644 --- a/modular_skyrat/modules/customization/modules/clothing/~donator/donator_clothing.dm +++ b/modular_skyrat/modules/customization/modules/clothing/~donator/donator_clothing.dm @@ -1214,7 +1214,6 @@ /obj/item/poster/korpstech name = "Korps Genetics poster" poster_type = /obj/structure/sign/poster/contraband/korpstech - icon = 'modular_skyrat/modules/aesthetics/posters/contraband.dmi' icon_state = "rolled_poster" /obj/structure/sign/poster/contraband/korpstech diff --git a/modular_zubbers/code/modules/clothing/head/jobs.dm b/modular_zubbers/code/modules/clothing/head/jobs.dm index 484bec20fd1..8133e0bf339 100644 --- a/modular_zubbers/code/modules/clothing/head/jobs.dm +++ b/modular_zubbers/code/modules/clothing/head/jobs.dm @@ -33,7 +33,8 @@ /obj/item/clothing/head/beret/medical/coroner //Donator request by Gavla name = "coroner beret" desc = "For harvesting organs in style!" - icon_state = "beret_badge_med" + icon_state = "/obj/item/clothing/head/beret/medical/coroner" + post_init_icon_state = "beret_badge_med" greyscale_config = /datum/greyscale_config/beret_badge greyscale_config_worn = /datum/greyscale_config/beret_badge/worn greyscale_colors = "#3E3E48#FFFFFF" diff --git a/modular_zubbers/code/modules/clothing/suits/croptops.dm b/modular_zubbers/code/modules/clothing/suits/croptops.dm index ae7bbfc4867..c218dd0a39e 100644 --- a/modular_zubbers/code/modules/clothing/suits/croptops.dm +++ b/modular_zubbers/code/modules/clothing/suits/croptops.dm @@ -41,16 +41,19 @@ /obj/item/clothing/suit/crop_jacket/long name = "sports jacket" desc = "A jacket that probably makes quite the effective outdoors wear." - icon_state = "jacket" + icon_state = "/obj/item/clothing/suit/crop_jacket/long" + post_init_icon_state = "jacket" /obj/item/clothing/suit/crop_jacket/shortsleeve/long name = "short-sleeved sports jacket" desc = "A jacket that probably makes quite the effective outdoors wear. However, \ some barbarian has cut the sleeves in half." - icon_state = "jacket_short" + icon_state = "/obj/item/clothing/suit/crop_jacket/shortsleeve/long" + post_init_icon_state = "jacket_short" /obj/item/clothing/suit/crop_jacket/sleeveless/long name = "sleeveless sports jacket" desc = "A jacket that probably makes quite the effective outdoors wear. However, \ some barbarian has cut the sleeves off." - icon_state = "jacket_sleeveless" + icon_state = "/obj/item/clothing/suit/crop_jacket/sleeveless/long" + post_init_icon_state = "jacket_sleeveless"