Skip to content

Commit

Permalink
buff
Browse files Browse the repository at this point in the history
  • Loading branch information
homexp13 committed Aug 27, 2024
1 parent b8b5fec commit 6c46354
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
15 changes: 8 additions & 7 deletions code/modules/clothing/modular_armor/attachments/storage.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions code/modules/clothing/shoes/marine_shoes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 6c46354

Please sign in to comment.