From 10839aaccdd20b79b4f1a70678ebf2e70a916e5c Mon Sep 17 00:00:00 2001 From: SmArtKar <44720187+SmArtKar@users.noreply.github.com> Date: Sat, 21 Feb 2026 02:50:48 +0100 Subject: [PATCH] Fixes shuttle chair buckle bars not appearing until sat on (#95156) ## About The Pull Request Closes #95154 ## Changelog :cl: fix: Fixed shuttle chair buckle bars not appearing until sat on /:cl: --- code/game/objects/structures/beds_chairs/chair.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/game/objects/structures/beds_chairs/chair.dm b/code/game/objects/structures/beds_chairs/chair.dm index de97a131d81..3c5040e83cc 100644 --- a/code/game/objects/structures/beds_chairs/chair.dm +++ b/code/game/objects/structures/beds_chairs/chair.dm @@ -236,6 +236,10 @@ max_integrity = 120 custom_materials = list(/datum/material/titanium = SHEET_MATERIAL_AMOUNT * 2) +/obj/structure/chair/comfy/shuttle/Initialize(mapload) + . = ..() + update_appearance() + /obj/structure/chair/comfy/shuttle/electrify_self(obj/item/assembly/shock_kit/input_shock_kit, mob/user, list/overlays_from_child_procs) if(!overlays_from_child_procs) var/mutable_appearance/echair_overlay = mutable_appearance('icons/obj/chairs.dmi', "echair_over", OBJ_LAYER, src, appearance_flags = KEEP_APART)