From 557a3b3ef37fcbe1b79c7e59fa5d8b8df2e81e5c Mon Sep 17 00:00:00 2001 From: Alphas00 <154434082+Alphas00@users.noreply.github.com> Date: Tue, 28 Jan 2025 22:42:58 +0100 Subject: [PATCH] Update GainStation13/code/modules/resize/height_limits.dm Co-authored-by: sheepishgoat <100518708+sheepishgoat@users.noreply.github.com> --- GainStation13/code/modules/resize/height_limits.dm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/GainStation13/code/modules/resize/height_limits.dm b/GainStation13/code/modules/resize/height_limits.dm index 06cb902cfd..1f3670e4d3 100644 --- a/GainStation13/code/modules/resize/height_limits.dm +++ b/GainStation13/code/modules/resize/height_limits.dm @@ -19,8 +19,8 @@ GLOBAL_LIST_EMPTY(see_toggle_smallsprite) set name = "Toggle Others' Giant Sprite" set category = "Preferences.GS13" set desc = "Change display settings to and from displaying others' giant sprites." - if(!mob.see_resized_others) - mob.see_resized_others = !mob.see_resized_others + mob.see_resized_others = !mob.see_resized_others + if(mob.see_resized_others) GLOB.see_toggle_smallsprite += mob for(var/mob/living/L in GLOB.enabled_smallsprite) if(L && L != mob && L.alternate_appearances && L.alternate_appearances["gscode_smallsprite"]) @@ -28,7 +28,6 @@ GLOBAL_LIST_EMPTY(see_toggle_smallsprite) AA.add_to_single_hud(mob, L) to_chat(src, "Resize others view toggled ON.") else - mob.see_resized_others = !mob.see_resized_others GLOB.see_toggle_smallsprite -= mob for(var/mob/living/L in GLOB.enabled_smallsprite) if(L && L.alternate_appearances && L.alternate_appearances["gscode_smallsprite"])