diff --git a/code/modules/clothing/modular_armor/attachments/storage.dm b/code/modules/clothing/modular_armor/attachments/storage.dm index c20af727031..cdf8a5e9cfe 100644 --- a/code/modules/clothing/modular_armor/attachments/storage.dm +++ b/code/modules/clothing/modular_armor/attachments/storage.dm @@ -390,20 +390,21 @@ flags_attach_features = ATTACH_APPLY_ON_MOB /obj/item/storage/internal/shoes/boot_knife - max_storage_space = 3 - storage_slots = 1 + max_storage_space = 4 + storage_slots = 2 + max_w_class = WEIGHT_CLASS_TINY draw_mode = TRUE - can_hold = list( -//RUTGMC EDIT + bypass_w_limit = list( /obj/item/weapon/yautja/knife, -//RUTGMC EDIT /obj/item/weapon/combat_knife, - /obj/item/weapon/gun/pistol/standard_pocketpistol, - /obj/item/weapon/gun/shotgun/double/derringer, /obj/item/attachable/bayonetknife, /obj/item/attachable/bayonetknife/som, /obj/item/stack/throwing_knife, /obj/item/storage/box/MRE, + /obj/item/reagent_containers/food/snacks, + ) + cant_hold = list( + /obj/item/stack/sheet, ) /obj/item/armor_module/storage/boot/full/Initialize(mapload) diff --git a/code/modules/clothing/shoes/marine_shoes.dm b/code/modules/clothing/shoes/marine_shoes.dm index ec4408e379d..808350d2765 100644 --- a/code/modules/clothing/shoes/marine_shoes.dm +++ b/code/modules/clothing/shoes/marine_shoes.dm @@ -36,6 +36,7 @@ for(var/atom/item_in_pocket AS in armor_storage.storage.contents) if(istype(item_in_pocket, /obj/item/weapon/combat_knife) || istype(item_in_pocket, /obj/item/attachable/bayonetknife) || istype(item_in_pocket, /obj/item/stack/throwing_knife)) icon_state += "-knife" + break /obj/item/clothing/shoes/marine/full starting_attachments = list(/obj/item/armor_module/storage/boot/full)