From a3bf9733a234d147f34041cb830118f75d90e0a1 Mon Sep 17 00:00:00 2001 From: Jarcolr Date: Sat, 5 Apr 2014 19:15:41 +0300 Subject: [PATCH] Kicking a grille does 2 less damage; fix for #4557 It will now take 10 hits to destroy it without using a weapon or tools. Take that,metagamers! --- code/game/objects/structures/grille.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/structures/grille.dm b/code/game/objects/structures/grille.dm index 0096d763eab..bfdad4e2bc1 100644 --- a/code/game/objects/structures/grille.dm +++ b/code/game/objects/structures/grille.dm @@ -41,7 +41,7 @@ if(HULK in user.mutations) health -= 5 else - health -= 3 + health -= 1 healthcheck() /obj/structure/grille/attack_alien(mob/user as mob) @@ -215,4 +215,4 @@ if(exposed_temperature > T0C + 1500) health -= 1 healthcheck() - ..() \ No newline at end of file + ..()