From 4da487d5479873f78be97ce7262411d85cd35281 Mon Sep 17 00:00:00 2001 From: Spades Date: Sun, 2 Jul 2017 15:34:44 -0400 Subject: [PATCH] Spawns Detectives with a .38 revolver. At some point I'll make it possible to pick different skins on your revolver. You at least get this for now. --- code/game/jobs/job/security.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/jobs/job/security.dm b/code/game/jobs/job/security.dm index 444f9daf559..ac43274052e 100644 --- a/code/game/jobs/job/security.dm +++ b/code/game/jobs/job/security.dm @@ -120,6 +120,7 @@ H.equip_to_slot_or_del(new /obj/item/weapon/storage/box/evidence(H), slot_l_hand) else H.equip_to_slot_or_del(new /obj/item/weapon/storage/box/evidence(H), slot_in_backpack) + H.equip_to_slot_or_del(new /obj/item/weapon/gun/projectile/revolver/detective(H), slot_in_backpack) // Vorestation Edit if(has_alt_title(H, alt_title,"Forensic Technician")) H.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/forensics/blue(H), slot_wear_suit) H.equip_to_slot_or_del(new /obj/item/weapon/storage/briefcase/crimekit, slot_r_hand)