From 8d72d9ef2b62788e92d7d84ac03a11444531dbba Mon Sep 17 00:00:00 2001 From: astralenigma Date: Fri, 1 May 2015 08:01:54 +0100 Subject: [PATCH] Second attempt at overlay None of the crates appear with the manifesto outside, but he's there waiting lurking in the shadows waiting to strike. --- code/game/objects/structures/crates_lockers/crates.dm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/code/game/objects/structures/crates_lockers/crates.dm b/code/game/objects/structures/crates_lockers/crates.dm index 576c93ca492..b52f0a52975 100644 --- a/code/game/objects/structures/crates_lockers/crates.dm +++ b/code/game/objects/structures/crates_lockers/crates.dm @@ -14,16 +14,17 @@ /obj/structure/closet/crate/New() ..() - update_icon() overlays.Cut() - if(manifest) - overlays += "manifest" + update_icon() + /obj/structure/closet/crate/update_icon() if(opened) icon_state = "[icon_crate]open" else icon_state = icon_crate + if(manifest) + overlays += "manifest" /obj/structure/closet/crate/internals desc = "A internals crate."