From 501f023c01066fdc78fb06442e57cf6c719c8098 Mon Sep 17 00:00:00 2001 From: Wisemonster <87689371+Wisemonster@users.noreply.github.com> Date: Tue, 24 Sep 2024 10:54:17 -0400 Subject: [PATCH] Changes Blueshield's security belt (#3389) * Changes Blueshield's belt * Actually prevents batons, gives 7 slots --- monkestation/code/modules/blueshield/closet.dm | 3 ++- monkestation/code/modules/blueshield/clothing.dm | 9 +++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/monkestation/code/modules/blueshield/closet.dm b/monkestation/code/modules/blueshield/closet.dm index 5402f2db276f..cb98eb1c2209 100644 --- a/monkestation/code/modules/blueshield/closet.dm +++ b/monkestation/code/modules/blueshield/closet.dm @@ -23,9 +23,10 @@ /obj/structure/closet/secure_closet/blueshield/New() ..() new /obj/item/storage/briefcase/secure(src) - new /obj/item/storage/belt/security/full(src) + new /obj/item/storage/belt/security/blueshield(src) new /obj/item/grenade/flashbang(src) new /obj/item/assembly/flash/handheld(src) + new /obj/item/reagent_containers/spray/pepper(src) new /obj/item/restraints/handcuffs(src) new /obj/item/clothing/glasses/hud/security/sunglasses(src) new /obj/item/storage/medkit/frontier/stocked(src) diff --git a/monkestation/code/modules/blueshield/clothing.dm b/monkestation/code/modules/blueshield/clothing.dm index 0bb05426e1fd..8e00aac2c2d4 100644 --- a/monkestation/code/modules/blueshield/clothing.dm +++ b/monkestation/code/modules/blueshield/clothing.dm @@ -215,3 +215,12 @@ /obj/item/radio/headset/headset_bs/alt/Initialize(mapload) . = ..() AddComponent(/datum/component/wearertargeting/earprotection, list(ITEM_SLOT_EARS)) + +/obj/item/storage/belt/security/blueshield + name = "\improper the blueshields's security belt" + desc = "A modified security toolbelt designed to help hold more in exchange for it's baton holster." + +/obj/item/storage/belt/security/blueshield/Initialize(mapload) + . = ..() + atom_storage.max_slots = 7 + atom_storage.set_holdable(list(), list(/obj/item/melee/baton))