From 61499334dc1ebb2ec3640be16064fc8b139fb488 Mon Sep 17 00:00:00 2001 From: Novacat <35587478+Novacat@users.noreply.github.com> Date: Thu, 13 May 2021 02:01:09 -0400 Subject: [PATCH] Standardizes Boxes (#8065) * Standardizes Boxes This standardizes all boxes to 7 slots, instead of the current system where we have a ton of 4-slot boxes, and a ton of 7-slot boxes. * Update inventory_sizes.dm --- code/__defines/inventory_sizes.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/__defines/inventory_sizes.dm b/code/__defines/inventory_sizes.dm index 6fb72505d00..d6474a73998 100644 --- a/code/__defines/inventory_sizes.dm +++ b/code/__defines/inventory_sizes.dm @@ -22,4 +22,4 @@ // Container sizes. Note that different containers can hold a maximum ITEMSIZE. #define INVENTORY_STANDARD_SPACE ITEMSIZE_COST_NORMAL * 7 // 28 #define INVENTORY_DUFFLEBAG_SPACE ITEMSIZE_COST_NORMAL * 9 // 36 -#define INVENTORY_BOX_SPACE ITEMSIZE_COST_SMALL * 4 // 8 \ No newline at end of file +#define INVENTORY_BOX_SPACE ITEMSIZE_COST_SMALL * 7 // 14