From cee1c909bc801592f661205feb5aa548e52e4efe Mon Sep 17 00:00:00 2001 From: ulti_fd Date: Mon, 2 Aug 2021 02:56:51 -0400 Subject: [PATCH] dont show wifeTwirl skillsets on non-4k charts --- .../ScreenSelectMusic decorations/wifeTwirl.lua | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Themes/Til Death/BGAnimations/ScreenSelectMusic decorations/wifeTwirl.lua b/Themes/Til Death/BGAnimations/ScreenSelectMusic decorations/wifeTwirl.lua index 0174f717f3..a228c46cf0 100644 --- a/Themes/Til Death/BGAnimations/ScreenSelectMusic decorations/wifeTwirl.lua +++ b/Themes/Til Death/BGAnimations/ScreenSelectMusic decorations/wifeTwirl.lua @@ -416,9 +416,10 @@ t[#t + 1] = self:xy(frameX + 120, frameY - 60):halign(0):zoom(0.6, maxwidth, 125) end, MintyFreshCommand = function(self) - if song then + if song and GAMESTATE:GetCurrentStyle():ColumnsPerPlayer() == 4 then local ss = steps:GetRelevantSkillsetsByMSDRank(getCurRateValue(), 1) local out = ss == "" and "" or ms.SkillSetsTranslatedByName[ss] + self:settext(out) else self:settext("") @@ -437,7 +438,7 @@ t[#t + 1] = self:xy(frameX + 120, frameY - 30):halign(0):zoom(0.6, maxwidth, 125) end, MintyFreshCommand = function(self) - if song then + if song and GAMESTATE:GetCurrentStyle():ColumnsPerPlayer() == 4 then local ss = steps:GetRelevantSkillsetsByMSDRank(getCurRateValue(), 2) local out = ss == "" and "" or ms.SkillSetsTranslatedByName[ss] self:settext(out) @@ -458,7 +459,7 @@ t[#t + 1] = self:xy(frameX + 120, frameY):halign(0):zoom(0.6, maxwidth, 125) end, MintyFreshCommand = function(self) - if song then + if song and GAMESTATE:GetCurrentStyle():ColumnsPerPlayer() == 4 then local ss = steps:GetRelevantSkillsetsByMSDRank(getCurRateValue(), 3) local out = ss == "" and "" or ms.SkillSetsTranslatedByName[ss] self:settext(out)