diff --git a/code/game/objects/items/storage/backpack.dm b/code/game/objects/items/storage/backpack.dm index 921ce5299a..996ee8cd02 100644 --- a/code/game/objects/items/storage/backpack.dm +++ b/code/game/objects/items/storage/backpack.dm @@ -247,7 +247,7 @@ name = "smuggler's satchel" desc = "A very slim satchel that can easily fit into tight spaces." icon_state = "satchel-flat" - w_class = WEIGHT_CLASS_NORMAL //Can fit in backpacks itself. + w_class = WEIGHT_CLASS_BULKY //Can fit in backpacks itself. level = 1 component_type = /datum/component/storage/concrete/secret_satchel @@ -258,7 +258,7 @@ /obj/item/storage/backpack/satchel/flat/ComponentInitialize() . = ..() GET_COMPONENT(STR, /datum/component/storage) - STR.max_combined_w_class = 15 + STR.max_combined_w_class = 6 STR.cant_hold = typecacheof(list(/obj/item/storage/backpack/satchel/flat)) //muh recursive backpacks /obj/item/storage/backpack/satchel/flat/hide(intact)