From c59da63de22f669df85fe78c4d709d3796d2f18d Mon Sep 17 00:00:00 2001 From: bob-b-b <36081010+bob-b-b@users.noreply.github.com> Date: Thu, 16 Jun 2022 18:23:45 +0300 Subject: [PATCH] Fixes infiltrator toolbox not fitting all suit parts (#67793) Fixes #67770 People buying the infiltrator kit couldn't put all the suit parts back into the case after taking them out --- code/game/objects/items/storage/toolbox.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/objects/items/storage/toolbox.dm b/code/game/objects/items/storage/toolbox.dm index 18fa3717b75..2c64585b7e3 100644 --- a/code/game/objects/items/storage/toolbox.dm +++ b/code/game/objects/items/storage/toolbox.dm @@ -280,6 +280,7 @@ var/datum/component/storage/STR = GetComponent(/datum/component/storage) STR.max_items = 10 STR.max_w_class = WEIGHT_CLASS_NORMAL + STR.max_combined_w_class = 24 STR.set_holdable(list( /obj/item/clothing/head/helmet/infiltrator, /obj/item/clothing/suit/armor/vest/infiltrator,