From 5e1b6922a5a3fc017f6bea3a81efdbaea650e047 Mon Sep 17 00:00:00 2001 From: lessthanthree <83487515+lessthnthree@users.noreply.github.com> Date: Thu, 19 Oct 2023 20:12:34 +0000 Subject: [PATCH] Medical beds show correct overlay [NO GBP] (#79057) ## About The Pull Request Update the overlay if the brakes are on at mapload ## Changelog :cl: LT3 fix: Maploaded medical beds now have correct brake lights /:cl: --- code/game/objects/structures/beds_chairs/bed.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/game/objects/structures/beds_chairs/bed.dm b/code/game/objects/structures/beds_chairs/bed.dm index edcec5add3a..4b82aeb5e8e 100644 --- a/code/game/objects/structures/beds_chairs/bed.dm +++ b/code/game/objects/structures/beds_chairs/bed.dm @@ -90,6 +90,8 @@ /obj/structure/bed/medical/Initialize(mapload) . = ..() AddElement(/datum/element/noisy_movement) + if(anchored) + update_appearance() /obj/structure/bed/medical/add_context(atom/source, list/context, obj/item/held_item, mob/living/user) . = ..()