From abdcf821239ea85a5f9619432c3db9cf08ae772e 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 494bfcde94e..2ea0deb9221 100644 --- a/code/game/objects/structures/grille.dm +++ b/code/game/objects/structures/grille.dm @@ -67,7 +67,7 @@ if(M_HULK in user.mutations) health -= 5 else - health -= 3 + health -= 1 healthcheck() /obj/structure/grille/attack_alien(mob/user as mob) @@ -241,4 +241,4 @@ if(exposed_temperature > T0C + 1500) health -= 1 healthcheck() - ..() \ No newline at end of file + ..()