From 2dd10f4d1fef79ad8158cc7e380d80c3c565424e Mon Sep 17 00:00:00 2001 From: Barinade Date: Sat, 24 Dec 2022 18:25:43 -0600 Subject: [PATCH] rebirth fix clicking new scores not rescoring immediately if set to --- .../BGAnimations/ScreenEvaluation decorations/mainDisplay.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Themes/Rebirth/BGAnimations/ScreenEvaluation decorations/mainDisplay.lua b/Themes/Rebirth/BGAnimations/ScreenEvaluation decorations/mainDisplay.lua index 882935afc5..8966a878b7 100644 --- a/Themes/Rebirth/BGAnimations/ScreenEvaluation decorations/mainDisplay.lua +++ b/Themes/Rebirth/BGAnimations/ScreenEvaluation decorations/mainDisplay.lua @@ -76,12 +76,14 @@ local t = Def.ActorFrame { --- update all relevant information according to the given score -- should work with offset plot as well as all regular information on this screen -- this is intended for use only with replays but may partially work without it + chosenScore = params.score self:playcommand("Set", { song = GAMESTATE:GetCurrentSong(), steps = GAMESTATE:GetCurrentSteps(), score = params.score, judgeSetting = params.judgeSetting, rejudged = params.rejudged, -- optional param to know if need to reload offset plot + usingCustomWindows = false, }) usingCustomWindows = true end @@ -101,6 +103,7 @@ local t = Def.ActorFrame { score = params.score, judgeSetting = params.judgeSetting, rejudged = params.rejudged, -- optional param to know if need to reload offset plot + usingCustomWindows = usingCustomWindows, }) end, JudgeWindowChangedMessageCommand = function(self)