diff --git a/code/modules/clothing/modular_armor/attachments/storage.dm b/code/modules/clothing/modular_armor/attachments/storage.dm index 1a5360f58eaa0..3e27e87c889aa 100644 --- a/code/modules/clothing/modular_armor/attachments/storage.dm +++ b/code/modules/clothing/modular_armor/attachments/storage.dm @@ -394,13 +394,21 @@ flags_attach_features = NONE /obj/item/storage/internal/marinehelmet - max_storage_space = 2 + max_storage_space = 3 storage_slots = 2 max_w_class = WEIGHT_CLASS_TINY bypass_w_limit = list( /obj/item/clothing/glasses, /obj/item/reagent_containers/food/snacks, + /obj/item/stack/medical/heal_pack/gauze, + /obj/item/stack/medical/heal_pack/ointment, + /obj/item/ammo_magazine/handful, ) cant_hold = list( - /obj/item/stack, + /obj/item/stack/sheet, + /obj/item/stack/catwalk, + /obj/item/stack/rods, + /obj/item/stack/sandbags_empty, + /obj/item/stack/tile, + /obj/item/stack/cable_coil, ) diff --git a/code/modules/clothing/modular_armor/modular.dm b/code/modules/clothing/modular_armor/modular.dm index caa72127cc289..f4c2abb264e82 100644 --- a/code/modules/clothing/modular_armor/modular.dm +++ b/code/modules/clothing/modular_armor/modular.dm @@ -282,7 +282,10 @@ var/obj/item/armor_module/storage/storage_module = attachments_by_slot[ATTACHMENT_SLOT_STORAGE] if(storage_module.show_storage) for(var/obj/item/stored AS in storage_module.storage.contents) - standing.overlays += mutable_appearance(storage_module.show_storage_icon, icon_state = initial(stored.icon_state)) + if(istype(stored, /obj/item/ammo_magazine/handful)) + standing.overlays += mutable_appearance(storage_module.show_storage_icon, icon_state = stored.icon_state, layer = COLLAR_LAYER) + else + standing.overlays += mutable_appearance(storage_module.show_storage_icon, icon_state = initial(stored.icon_state), layer = COLLAR_LAYER) if(attachments_by_slot[ATTACHMENT_SLOT_VISOR]) return standing standing.pixel_x = visorless_offset_x diff --git a/icons/mob/modular/modular_helmet_storage.dmi b/icons/mob/modular/modular_helmet_storage.dmi index 75824d6536aec..7791972761df2 100644 Binary files a/icons/mob/modular/modular_helmet_storage.dmi and b/icons/mob/modular/modular_helmet_storage.dmi differ