From f55435a6f5624227c88fa85d062ebc4c959c33db Mon Sep 17 00:00:00 2001 From: SmArtKar <44720187+SmArtKar@users.noreply.github.com> Date: Tue, 11 Feb 2025 00:07:48 +0100 Subject: [PATCH] [NO GBP] Fixes exceptionally dark armrests on chairs (#89409) ## About The Pull Request Closes #89037 color goes through KEEP_APART ## Changelog :cl: fix: Fixed exceptionally dark armrests on chairs /:cl: --- code/game/objects/structures/beds_chairs/chair.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/game/objects/structures/beds_chairs/chair.dm b/code/game/objects/structures/beds_chairs/chair.dm index c13c52ea775..7dd1dd157f9 100644 --- a/code/game/objects/structures/beds_chairs/chair.dm +++ b/code/game/objects/structures/beds_chairs/chair.dm @@ -92,7 +92,8 @@ return mutable_appearance(icon, "[icon_state]_armrest") /obj/structure/chair/proc/update_armrest() - armrest = color_atom_overlay(armrest) + if (cached_color_filter) + armrest = filter_appearance_recursive(armrest, cached_color_filter) update_appearance() /obj/structure/chair/update_overlays()