From 1c341775f449847c916d29996b3d813d7b66176c Mon Sep 17 00:00:00 2001 From: MilkForever <96450841+MilkForever@users.noreply.github.com> Date: Tue, 22 Aug 2023 15:43:18 -0400 Subject: [PATCH] Department Duster Fix Fixes departmental security dusters not being given to security officers when they spawn in. --- code/modules/jobs/job_types/security_officer.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/jobs/job_types/security_officer.dm b/code/modules/jobs/job_types/security_officer.dm index faf493c2d66f..cf8c06d9f458 100644 --- a/code/modules/jobs/job_types/security_officer.dm +++ b/code/modules/jobs/job_types/security_officer.dm @@ -123,7 +123,7 @@ GLOBAL_LIST_EMPTY(security_officer_distribution) //monkestation edit start: add dept sec outfits if(suit) - for(var/obj/item/gun/energy/disabler/stored in spawning.contents) + for(var/obj/item/gun/ballistic/automatic/pistol/paco/no_mag/stored in spawning.contents) if(spawning.wear_suit) qdel(spawning.wear_suit) spawning.equip_to_slot_or_del(new suit(spawning),ITEM_SLOT_OCLOTHING)