From 400f9555761cb649752e9cbfd375a8c2089dda78 Mon Sep 17 00:00:00 2001 From: Trilbyspaceclone <30435998+Trilbyspaceclone@users.noreply.github.com> Date: Sun, 24 Mar 2019 11:21:38 -0400 Subject: [PATCH] Update bags.dm --- code/game/objects/items/storage/bags.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/objects/items/storage/bags.dm b/code/game/objects/items/storage/bags.dm index b83c245b23..1ad3391fa7 100644 --- a/code/game/objects/items/storage/bags.dm +++ b/code/game/objects/items/storage/bags.dm @@ -167,19 +167,19 @@ GET_COMPONENT(STR, /datum/component/storage/concrete/stack) STR.allow_quick_empty = TRUE STR.can_hold = typecacheof(list(/obj/item/stack/ore)) - STR.max_w_class = INFINITY + STR.max_w_class = WEIGHT_CLASS_HUGE STR.max_combined_stack_amount = 150 /obj/item/storage/bag/ore/large name = "large mining satchel" - desc = "This bag can hold three times the ore in many small pockets. Shocking folding and compact for its volume." + desc = "This bag can hold three times the ore in many small pockets. Shockingly foldable and compact for its volume." /obj/item/storage/bag/ore/large/ComponentInitialize() . = ..() GET_COMPONENT(STR, /datum/component/storage/concrete/stack) STR.allow_quick_empty = TRUE STR.can_hold = typecacheof(list(/obj/item/stack/ore)) - STR.max_w_class = INFINITY + STR.max_w_class = WEIGHT_CLASS_HUGE STR.max_combined_stack_amount = 150 /obj/item/storage/bag/ore/holding //miners, your messiah has arrived