From d51f154ac8aec90fe3f564b24bf8a618dce4f80e Mon Sep 17 00:00:00 2001 From: MinaciousGrace Date: Thu, 19 Jan 2017 14:36:24 -0500 Subject: [PATCH] scale avg nps with rate --- .../BGAnimations/ScreenSelectMusic decorations/msd.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Themes/Til Death/BGAnimations/ScreenSelectMusic decorations/msd.lua b/Themes/Til Death/BGAnimations/ScreenSelectMusic decorations/msd.lua index d4d9cb6fa7..930760688b 100644 --- a/Themes/Til Death/BGAnimations/ScreenSelectMusic decorations/msd.lua +++ b/Themes/Til Death/BGAnimations/ScreenSelectMusic decorations/msd.lua @@ -162,7 +162,7 @@ t[#t+1] = LoadFont("Common Normal")..{ if steps ~= nil and song ~= nil and update then length = song:GetStepsSeconds() notecount = steps:GetRadarValues(pn):GetValue("RadarCategory_Notes") - self:settext(string.format("%0.2f Average NPS",notecount/length)) + self:settext(string.format("%0.2f Average NPS",notecount/length * getCurRateValue())) self:diffuse(Saturation(getDifficultyColor(GetCustomDifficulty(steps:GetStepsType(),steps:GetDifficulty())),0.3)) else self:settext("0.00 Average NPS")