diff --git a/code/game/objects/items/storage/large_holster.dm b/code/game/objects/items/storage/large_holster.dm index 183aa365dbcc..4ce67c863dd6 100644 --- a/code/game/objects/items/storage/large_holster.dm +++ b/code/game/objects/items/storage/large_holster.dm @@ -476,6 +476,7 @@ desc = "A special-issue harness designed to allow the user to freely and securely holster a M6H-BRUTE launcher system on their back without impeding movement, while also having several other integrated storage packs for additional ammo and equipment." icon = 'icons/obj/items/clothing/backpack/backpacks_by_faction/UA.dmi' icon_state = "bruterig" + map_specific_decoration = FALSE item_icons = list( WEAR_BACK = 'icons/mob/humans/onmob/clothing/back/backpacks_by_faction/UA.dmi' ) @@ -484,10 +485,15 @@ /obj/item/weapon/gun/launcher/rocket/brute, ) +/obj/item/storage/belt/gun/brutepack/update_icon() + . = ..() + var/mob/living/carbon/human/user = loc + if(istype(user)) + user.update_inv_back() + /obj/item/storage/belt/gun/brutepack/full/fill_preset_inventory() handle_item_insertion(new /obj/item/weapon/gun/launcher/rocket/brute()) new /obj/item/ammo_magazine/rocket/brute(src) new /obj/item/ammo_magazine/rocket/brute(src) new /obj/item/ammo_magazine/rocket/brute(src) - item_state = "bruterig" diff --git a/icons/mob/humans/onmob/clothing/back/backpacks_by_faction/UA.dmi b/icons/mob/humans/onmob/clothing/back/backpacks_by_faction/UA.dmi index e5ae6c832207..81ffccfc6fdd 100644 Binary files a/icons/mob/humans/onmob/clothing/back/backpacks_by_faction/UA.dmi and b/icons/mob/humans/onmob/clothing/back/backpacks_by_faction/UA.dmi differ