From a33f8592f8d64028e936d4419995765d52252720 Mon Sep 17 00:00:00 2001 From: Sunk <69110309+Sunketchupm@users.noreply.github.com> Date: Tue, 7 Nov 2023 01:56:05 -0500 Subject: [PATCH] Fix timer issue with PSC (#509) My last PR didn't seem to account for the race timer so now it does --- mods/personal-starcount-ex.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/personal-starcount-ex.lua b/mods/personal-starcount-ex.lua index d9360b06c..2a6076ccd 100644 --- a/mods/personal-starcount-ex.lua +++ b/mods/personal-starcount-ex.lua @@ -122,7 +122,7 @@ local function set_hud_star_positions(m, height, width) -- Move HUD graphics away from the TIMER HUD if timer_current_value ~= 0 then timer_offset_X = 60 - timer_offset_Y = 17 + timer_offset_Y = -17 end star_counter_offset_X = is_in_cutscenes[m.action] and 22 or 76 @@ -173,7 +173,7 @@ local function set_hud_star_positions(m, height, width) -- Move HUD graphics away from the TIMER HUD if timer_current_value ~= 0 then timer_offset_X = 0 - timer_offset_Y = -10 + timer_offset_Y = 12 end star_counter_offset_X = 76