diff --git a/BGAnimations/ScreenEvaluation common/Panes/Pane7/default.lua b/BGAnimations/ScreenEvaluation common/Panes/Pane7/default.lua index d2697f4a9..54e73b5a3 100644 --- a/BGAnimations/ScreenEvaluation common/Panes/Pane7/default.lua +++ b/BGAnimations/ScreenEvaluation common/Panes/Pane7/default.lua @@ -13,9 +13,8 @@ local pane = Def.ActorFrame{ -- ----------------------------------------------------------------------- -- 22px RowHeight by default, which works for displaying 10 machine HighScores -local args = { Player=player, RowHeight=22} +local args = { Player=player, RowHeight=22, HideScores=true } --- top 10 machine HighScores args.NumHighScores = 10 pane[#pane+1] = LoadActor(THEME:GetPathB("", "_modules/HighScoreList.lua"), args) diff --git a/BGAnimations/ScreenEvaluation common/Shared/AutoSubmitScore.lua b/BGAnimations/ScreenEvaluation common/Shared/AutoSubmitScore.lua index 99428eee8..2cac29d74 100644 --- a/BGAnimations/ScreenEvaluation common/Shared/AutoSubmitScore.lua +++ b/BGAnimations/ScreenEvaluation common/Shared/AutoSubmitScore.lua @@ -153,12 +153,12 @@ local AutoSubmitRequestProcessor = function(res, overlay) if j == 1 then if data and data[playerStr] then if data[playerStr]["isRanked"] then - SetEntryText("", "No Scores", "", entry) + SetEntryText("", "No Scores", "", "", entry) else - SetEntryText("", "Chart Not Ranked", "", entry) + SetEntryText("", "Chart Not Ranked", "", "", entry) end else - SetEntryText("", "No Scores", "", entry) + SetEntryText("", "No Scores", "", "", entry) end else -- Empty out the remaining rows. @@ -274,6 +274,7 @@ af[#af+1] = LoadFont("Common Normal").. { end, SubmitFailedCommand=function(self) self:settext("Submit Failed 😞") + DiffuseEmojis(self) end, ServiceDisabledCommand=function(self) self:settext("Submit Disabled") @@ -298,6 +299,7 @@ af[#af+1] = LoadFont("Common Normal").. { end, SubmitFailedCommand=function(self) self:settext("Submit Failed 😞") + DiffuseEmojis(self) end, ServiceDisabledCommand=function(self) self:settext("Submit Disabled") diff --git a/BGAnimations/_modules/HighScoreList.lua b/BGAnimations/_modules/HighScoreList.lua index da997ac7a..52af9fb86 100644 --- a/BGAnimations/_modules/HighScoreList.lua +++ b/BGAnimations/_modules/HighScoreList.lua @@ -107,14 +107,13 @@ end -- --------------------------------------------- - for i=lower,upper do local row_index = i-lower local score, name, date local numbers = {} - if HighScores[i] then + if HighScores[i] and not args.HideScores then score = FormatPercentScore(HighScores[i]:GetPercentDP()) name = HighScores[i]:GetName() date = HighScores[i]:GetDate() @@ -175,4 +174,4 @@ for i=lower,upper do end -return af \ No newline at end of file +return af