From 84d7e040080ca0774d7bc97a5b8622e23608c352 Mon Sep 17 00:00:00 2001 From: Iajret Creature <122297233+Steals-The-PRs@users.noreply.github.com> Date: Thu, 8 Feb 2024 02:28:48 +0300 Subject: [PATCH] [MIRROR] RD and QM coats can hold their telebatons. QM coat can also 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 <154629622+NovaBot13@users.noreply.github.com> Co-authored-by: cnleth <113535457+cnleth@users.noreply.github.com> --- code/modules/clothing/suits/jobs.dm | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/code/modules/clothing/suits/jobs.dm b/code/modules/clothing/suits/jobs.dm index b63bb493e58..f73fb78c288 100644 --- a/code/modules/clothing/suits/jobs.dm +++ b/code/modules/clothing/suits/jobs.dm @@ -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 @@ -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