From 0bfc6de678d5ad6f320516d1d19baae214ddaae4 Mon Sep 17 00:00:00 2001 From: Anewbe Date: Sat, 13 May 2017 10:20:45 -0500 Subject: [PATCH] Trashbag can hold more --- code/game/objects/items/weapons/storage/bags.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/weapons/storage/bags.dm b/code/game/objects/items/weapons/storage/bags.dm index 241e5c008f3..519fff3d50c 100644 --- a/code/game/objects/items/weapons/storage/bags.dm +++ b/code/game/objects/items/weapons/storage/bags.dm @@ -34,15 +34,16 @@ w_class = ITEMSIZE_LARGE max_w_class = ITEMSIZE_SMALL + max_storage_space = ITEMSIZE_SMALL * 21 can_hold = list() // any cant_hold = list(/obj/item/weapon/disk/nuclear) /obj/item/weapon/storage/bag/trash/update_icon() if(contents.len == 0) icon_state = "trashbag0" - else if(contents.len < 12) + else if(contents.len < 9) icon_state = "trashbag1" - else if(contents.len < 21) + else if(contents.len < 18) icon_state = "trashbag2" else icon_state = "trashbag3"