Skip to content

Commit

Permalink
Changes Blueshield's security belt (#3389)
Browse files Browse the repository at this point in the history
* Changes Blueshield's belt

* Actually prevents batons, gives 7 slots
  • Loading branch information
Wisemonster authored Sep 24, 2024
1 parent 443c234 commit 501f023
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
3 changes: 2 additions & 1 deletion monkestation/code/modules/blueshield/closet.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
9 changes: 9 additions & 0 deletions monkestation/code/modules/blueshield/clothing.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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))

0 comments on commit 501f023

Please sign in to comment.