From 4b6398cfa9e49fc28776ee4ab2c2e893b7819725 Mon Sep 17 00:00:00 2001 From: nik707 <38332985+nik707@users.noreply.github.com> Date: Mon, 3 Sep 2018 22:58:08 -0500 Subject: [PATCH 1/2] nerfs smuggler satchels --- code/game/objects/items/storage/backpack.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/storage/backpack.dm b/code/game/objects/items/storage/backpack.dm index 921ce5299a..730efe4032 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 From 2aa0eb2d1bc9f824edffd939d94c02020200a5af Mon Sep 17 00:00:00 2001 From: nik707 <38332985+nik707@users.noreply.github.com> Date: Tue, 4 Sep 2018 16:31:35 -0500 Subject: [PATCH 2/2] different nerf --- code/game/objects/items/storage/backpack.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/storage/backpack.dm b/code/game/objects/items/storage/backpack.dm index 730efe4032..996ee8cd02 100644 --- a/code/game/objects/items/storage/backpack.dm +++ b/code/game/objects/items/storage/backpack.dm @@ -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)