diff --git a/code/__DEFINES/construction.dm b/code/__DEFINES/construction.dm index 4293b7672335..e329c4b9b693 100644 --- a/code/__DEFINES/construction.dm +++ b/code/__DEFINES/construction.dm @@ -72,7 +72,7 @@ //The maximum size of a stack object. #define MAX_STACK_SIZE 50 //maximum amount of cable in a coil -#define MAXCOIL 30 +#define MAXCOIL 40 //tablecrafting defines #define CAT_NONE "" diff --git a/code/game/objects/items/storage/belt.dm b/code/game/objects/items/storage/belt.dm index 269b5f6101fa..778163acfb7c 100644 --- a/code/game/objects/items/storage/belt.dm +++ b/code/game/objects/items/storage/belt.dm @@ -38,6 +38,7 @@ /obj/item/storage/belt/utility/ComponentInitialize() . = ..() 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 = 21 STR.set_holdable(list( @@ -136,6 +137,7 @@ . = ..() var/datum/component/storage/STR = GetComponent(/datum/component/storage) STR.max_w_class = WEIGHT_CLASS_BULKY + STR.max_items = 12 STR.max_combined_w_class = 21 STR.set_holdable(list( /obj/item/healthanalyzer,