From 69bcb06d74c3f727137c7969e8dfe57fc122d32c Mon Sep 17 00:00:00 2001 From: MrMelbert <51863163+MrMelbert@users.noreply.github.com> Date: Thu, 17 Jul 2025 15:40:13 -0500 Subject: [PATCH] Reduce size of fake rulechat AO from 3 to 2 (#92152) ## About The Pull Request Real AO / old / new image ## Why It's Good For The Game Not perfect, but I found it a little jarring just how large the outline was. ## Changelog :cl: Melbert qol: Tweaked size of runechat shadow outline. /:cl: --- .../hud/rendering/plane_masters/plane_master_subtypes.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/_onclick/hud/rendering/plane_masters/plane_master_subtypes.dm b/code/_onclick/hud/rendering/plane_masters/plane_master_subtypes.dm index 25086885e5f..a588ab791c9 100644 --- a/code/_onclick/hud/rendering/plane_masters/plane_master_subtypes.dm +++ b/code/_onclick/hud/rendering/plane_masters/plane_master_subtypes.dm @@ -460,7 +460,7 @@ if(istype(mymob) && mymob.canon_client?.prefs?.read_preference(/datum/preference/toggle/ambient_occlusion)) // We use outlines instead of drop shadow due to how extremely expensive it is, and there's no reason to use it for runechat // which already has high drop shadow transparency at just 32 alpha, so outline does the job good enough - add_filter("AO", 1, outline_filter(size = 3, color = "#04080F20", flags = OUTLINE_SQUARE)) + add_filter("AO", 1, outline_filter(size = 2, color = "#04080F20", flags = OUTLINE_SQUARE)) /atom/movable/screen/plane_master/balloon_chat name = "Balloon chat"