Skip to content

Commit

Permalink
[MIRROR] RD and QM coats can hold their telebatons. QM coat can also …
Browse files Browse the repository at this point in the history
…hold items that a regular jacket can hold (#1843)

* RD and QM coats can hold their telebatons. QM coat can also hold items that a regular jacket can hold (#81301)

---------

Co-authored-by: NovaBot <[email protected]>
Co-authored-by: cnleth <[email protected]>
  • Loading branch information
3 people authored Feb 7, 2024
1 parent a567a1a commit 84d7e04
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions code/modules/clothing/suits/jobs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -236,10 +236,14 @@
icon_state = "qm_coat"
blood_overlay_type = "coat"
body_parts_covered = CHEST|GROIN|LEGS|ARMS
allowed = list(

/obj/item/clothing/suit/jacket/quartermaster/Initialize(mapload)
. = ..()
allowed += list(
/obj/item/stamp,
/obj/item/storage/bag/mail,
/obj/item/universal_scanner,
/obj/item/melee/baton/telescopic,
)

/obj/item/clothing/suit/toggle/lawyer/greyscale
Expand Down Expand Up @@ -395,7 +399,10 @@

/obj/item/clothing/suit/jacket/research_director/Initialize(mapload)
. = ..()
allowed += /obj/item/storage/bag/xeno
allowed += list(
/obj/item/storage/bag/xeno,
/obj/item/melee/baton/telescopic,
)

// Atmos
/obj/item/clothing/suit/atmos_overalls
Expand Down

0 comments on commit 84d7e04

Please sign in to comment.