From 9c6393a12d2de49e6554c78c9ded45bb0e03b8a0 Mon Sep 17 00:00:00 2001 From: Alberyk Date: Sat, 25 Jun 2016 21:34:07 -0300 Subject: [PATCH] Small bookbag and janibelt fix (#463) Now you can carry seven books into it. * Fixing janitor's belt Now it probably has enough space --- code/game/objects/items/weapons/storage/bags.dm | 1 + code/game/objects/items/weapons/storage/belt.dm | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/weapons/storage/bags.dm b/code/game/objects/items/weapons/storage/bags.dm index 4369ef308f6..62d460fd45e 100644 --- a/code/game/objects/items/weapons/storage/bags.dm +++ b/code/game/objects/items/weapons/storage/bags.dm @@ -266,6 +266,7 @@ icon = 'icons/obj/library.dmi' icon_state = "bookbag" storage_slots = 7 + max_storage_space = 200 max_w_class = 3 w_class = 3 can_hold = list(/obj/item/weapon/book, /obj/item/weapon/spellbook) diff --git a/code/game/objects/items/weapons/storage/belt.dm b/code/game/objects/items/weapons/storage/belt.dm index 2ddf77f5262..534faefefce 100644 --- a/code/game/objects/items/weapons/storage/belt.dm +++ b/code/game/objects/items/weapons/storage/belt.dm @@ -200,7 +200,8 @@ icon_state = "janibelt" item_state = "janibelt" storage_slots = 6 - max_storage_space = 4 // Set to this so the light replacer can fit. + max_w_class = 3 + max_storage_space = 28 can_hold = list( /obj/item/weapon/grenade/chem_grenade/cleaner, /obj/item/device/lightreplacer,