Skip to content

Commit

Permalink
Greats should always be enabled regardless of mode
Browse files Browse the repository at this point in the history
  • Loading branch information
teejusb committed Mar 21, 2023
1 parent 41e3542 commit 263002c
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions Scripts/SL-PlayerOptions.lua
Original file line number Diff line number Diff line change
Expand Up @@ -580,9 +580,14 @@ local Overrides = {
local tns = "TapNoteScore" .. (SL.Global.GameMode=="ITG" and "" or SL.Global.GameMode)
local t = {THEME:GetString("SLPlayerOptions","None")}
-- assume pluralization via terminal s
t[2] = THEME:GetString(tns,"W5").."s"
t[3] = THEME:GetString(tns,"W4").."s + "..t[2]
t[4] = THEME:GetString(tns,"W1").."s + "..THEME:GetString(tns,"W2").."s"
local idx = 2
t[idx] = THEME:GetString(tns,"W5").."s"
idx = idx + 1
if SL.Global.GameMode=="ITG" then
t[idx] = THEME:GetString(tns,"W4").."s + "..t[idx-1]
idx = idx + 1
end
t[idx] = THEME:GetString(tns,"W1").."s + "..THEME:GetString(tns,"W2").."s"
return t
end,
OneChoiceForAllPlayers = true,
Expand Down

0 comments on commit 263002c

Please sign in to comment.