From 28b8001188d70fe96befd5ef75a71137fb93f28e Mon Sep 17 00:00:00 2001 From: ESwordTheCat Date: Mon, 7 Apr 2014 22:19:53 +0800 Subject: [PATCH] Implement it to grille. Conflicts: code/game/objects/structures/grille.dm --- code/game/objects/structures/grille.dm | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/code/game/objects/structures/grille.dm b/code/game/objects/structures/grille.dm index c00cb38551f..59a7442c005 100644 --- a/code/game/objects/structures/grille.dm +++ b/code/game/objects/structures/grille.dm @@ -242,3 +242,13 @@ health -= 1 healthcheck() ..() + + +/obj/structure/grille/resetVariables() + density = initial(density) + icon_state = initial(icon_state) + destroyed = initial(destroyed) + health = initial(health) + + return ..() +