From 89aed0e2d0e47ef469e796f368291938b2b7e16c Mon Sep 17 00:00:00 2001 From: Iajret Creature <122297233+Steals-The-PRs@users.noreply.github.com> Date: Sun, 8 Sep 2024 22:25:24 +0300 Subject: [PATCH] [MIRROR] [No GBP] Fixes an oversight with high-cap goodie cases (#5008) * [No GBP] Fixes an oversight with high-cap goodie cases (#4376) Update goodies.dm * [MIRROR] [No GBP] Fixes an oversight with high-cap goodie cases --------- Co-authored-by: Stalkeros <42087567+Stalkeros2@users.noreply.github.com> Co-authored-by: StealsThePRs --- modular_nova/modules/cargo/code/goodies.dm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/modular_nova/modules/cargo/code/goodies.dm b/modular_nova/modules/cargo/code/goodies.dm index 7b46eae5c08..96ac565db88 100644 --- a/modular_nova/modules/cargo/code/goodies.dm +++ b/modular_nova/modules/cargo/code/goodies.dm @@ -1,3 +1,12 @@ +/obj/item/storage/lockbox/Initialize(mapload) + . = ..() + atom_storage.max_specific_storage = WEIGHT_CLASS_BULKY + atom_storage.max_total_storage = WEIGHT_CLASS_BULKY*16 //Assuming full case+manifest + atom_storage.max_slots = 16 //See above + atom_storage.can_hold = typecacheof(list( + /obj/item/paper, + )) + /* * EMERGENCY RACIAL EQUIPMENT */