From c801f7d7f596aa91632fa3e6b2e963a67caaa5a1 Mon Sep 17 00:00:00 2001 From: Willburd <7099514+Willburd@users.noreply.github.com> Date: Thu, 29 May 2025 05:40:48 -0400 Subject: [PATCH] slower jigglin --- code/modules/tgui/modules/appearance_changer.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/tgui/modules/appearance_changer.dm b/code/modules/tgui/modules/appearance_changer.dm index 287eb83314..bb18aad39b 100644 --- a/code/modules/tgui/modules/appearance_changer.dm +++ b/code/modules/tgui/modules/appearance_changer.dm @@ -86,9 +86,9 @@ /datum/tgui_module/appearance_changer/proc/jiggle_map() // Fix for weird byond bug, jiggles the map around a little - sleep(0.1 SECONDS) + sleep(0.5 SECONDS) cam_screen.screen_loc = "[map_name]:1,1" - sleep(0.1 SECONDS) + sleep(0.5 SECONDS) cam_screen.screen_loc = "[map_name]:3:-32,3:-48" // Align for larger icons and scales /datum/tgui_module/appearance_changer/tgui_close(mob/user)