From 0b59c8dbd1f4407a73e2400cd73d3ec0762556c1 Mon Sep 17 00:00:00 2001 From: "johnsonmt88@gmail.com" Date: Thu, 16 Aug 2012 15:54:17 +0000 Subject: [PATCH] Detective's armor once again allows him to fire his revolver. Fixes issue 797. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@4438 316c924e-a436-60f5-8080-3fe189b3f50e --- code/modules/projectiles/guns/projectile/revolver.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/projectiles/guns/projectile/revolver.dm b/code/modules/projectiles/guns/projectile/revolver.dm index a2c3466829..1fd264d4c6 100644 --- a/code/modules/projectiles/guns/projectile/revolver.dm +++ b/code/modules/projectiles/guns/projectile/revolver.dm @@ -9,7 +9,8 @@ special_check(var/mob/living/carbon/human/M) if(ishuman(M)) - if(istype(M.w_uniform, /obj/item/clothing/under/det) && istype(M.head, /obj/item/clothing/head/det_hat) && istype(M.wear_suit, /obj/item/clothing/suit/det_suit)) + if(istype(M.w_uniform, /obj/item/clothing/under/det) && istype(M.head, /obj/item/clothing/head/det_hat) && \ + (istype(M.wear_suit, /obj/item/clothing/suit/det_suit) || istype(M.wear_suit, /obj/item/clothing/suit/armor/det_suit))) return 1 M << "\red You just don't feel cool enough to use this gun looking like that." return 0