Skip to content

Commit

Permalink
dont show wifeTwirl skillsets on non-4k charts
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulti-FD committed Aug 2, 2021
1 parent 63cc09a commit cee1c90
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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("")
Expand All @@ -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)
Expand All @@ -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)
Expand Down

0 comments on commit cee1c90

Please sign in to comment.