From 692e961e2fc369984780f7fe7ab19a0f09ffde59 Mon Sep 17 00:00:00 2001 From: Isaac Erwin Date: Mon, 1 Aug 2016 12:35:08 -0400 Subject: [PATCH] Fixes wooden coffins deconstructing into metal sheets Sure, I /could/ fix the messages and the fact that a wooden coffin is deconstructed with a welder, but just think of it as slicing the hinges apart because I'm too lazy. Also makes sarcophaguses deconstruct into sandstone, but I don't think I've ever seen those in-game. :cl: fix: Coffins will now deconstruct into wood instead of metal. /:cl: --- code/game/objects/structures/crates_lockers/closets/coffin.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/game/objects/structures/crates_lockers/closets/coffin.dm b/code/game/objects/structures/crates_lockers/closets/coffin.dm index c7aaa8cd84d..6e34e70894e 100644 --- a/code/game/objects/structures/crates_lockers/closets/coffin.dm +++ b/code/game/objects/structures/crates_lockers/closets/coffin.dm @@ -6,6 +6,7 @@ icon_opened = "coffin_open" burn_state = FLAMMABLE burntime = 20 + material_drop = /obj/item/stack/sheet/wood /obj/structure/closet/coffin/update_icon() if(!opened) @@ -18,4 +19,5 @@ icon_state = "sarc" icon_closed = "sarc" icon_opened = "sarc_open" - sound = 'sound/effects/stonedoor_openclose.ogg' \ No newline at end of file + sound = 'sound/effects/stonedoor_openclose.ogg' + material_drop = /obj/item/stack/sheet/mineral/sandstone \ No newline at end of file