From a92cf8bdc7fdfc063a6d24b0cd4addf354b592d5 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Fri, 27 May 2022 18:56:59 +0200 Subject: [PATCH] [MIRROR] Belts are now Bulky and do not fit in bags. [MDB IGNORE] (#13949) * Belts are now Bulky and do not fit in bags. (#66927) * Belts are bulky and therefore do not fit in bags, solely the belt slot. * Belts are now Bulky and do not fit in bags. Co-authored-by: Iamgoofball --- code/game/objects/items/storage/belt.dm | 1 + code/modules/clothing/outfits/ert.dm | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/storage/belt.dm b/code/game/objects/items/storage/belt.dm index 781527ae28f..62c9a1f65b4 100644 --- a/code/game/objects/items/storage/belt.dm +++ b/code/game/objects/items/storage/belt.dm @@ -12,6 +12,7 @@ attack_verb_simple = list("whip", "lash", "discipline") max_integrity = 300 equip_sound = 'sound/items/equip/toolbelt_equip.ogg' + w_class = WEIGHT_CLASS_BULKY var/content_overlays = FALSE //If this is true, the belt will gain overlays based on what it's holding /obj/item/storage/belt/suicide_act(mob/living/carbon/user) diff --git a/code/modules/clothing/outfits/ert.dm b/code/modules/clothing/outfits/ert.dm index 8e4ba3f3d99..b73bcb0e8ab 100644 --- a/code/modules/clothing/outfits/ert.dm +++ b/code/modules/clothing/outfits/ert.dm @@ -96,7 +96,6 @@ l_hand = /obj/item/gun/energy/pulse/carbine/loyalpin backpack_contents = list( /obj/item/melee/baton/security/loaded = 1, - /obj/item/storage/belt/security/full = 1, /obj/item/storage/box/handcuffs = 1, /obj/item/storage/box/survival/engineer = 1, )