Skip to content

Commit

Permalink
rebirth fix clicking new scores not rescoring immediately if set to
Browse files Browse the repository at this point in the history
  • Loading branch information
poco0317 committed Dec 25, 2022
1 parent d903f85 commit 2dd10f4
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)
Expand Down

0 comments on commit 2dd10f4

Please sign in to comment.