From 9448cd37593dfd5ee9ea0be31b0943b103d20d5b Mon Sep 17 00:00:00 2001 From: "polyxenitopalidou@gmail.com" Date: Wed, 10 Aug 2011 14:25:56 +0000 Subject: [PATCH] =?UTF-8?q?=E2=80=A2durprevert?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2004 316c924e-a436-60f5-8080-3fe189b3f50e --- code/game/objects/grille.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/game/objects/grille.dm b/code/game/objects/grille.dm index d63e37821b8..222352adf3d 100644 --- a/code/game/objects/grille.dm +++ b/code/game/objects/grille.dm @@ -116,7 +116,8 @@ O << text("\red [user] [src.anchored ? "fastens" : "unfastens"] the grille.") return else if(istype(W, /obj/item/weapon/shard)) - if(ishuman(user)) //Let's check if the guy's wearing electrically insulated gloves --Agourimarkan + src.health -= W.force * 0.1 + /*if(ishuman(user)) //Let's check if the guy's wearing electrically insulated gloves --Agourimarkan var/mob/living/carbon/human/H = user if(H.gloves) var/obj/item/clothing/gloves/G = H.gloves @@ -157,7 +158,7 @@ H.take_organ_damage(brutedamagetaken,0) return else //Alright, he's not a human. Can monkeys or aliens even wear gloves? - src.health -= W.force *0.1 //10% damage only for non-glorious human master race members + src.health -= W.force *0.1*/ //10% damage only for non-glorious human master race members else // anything else, chance of a shock if(!shock(user, 70))