diff --git a/Themes/_fallback/Scripts/03 Gameplay.lua b/Themes/_fallback/Scripts/03 Gameplay.lua index ed245c2ec7..7f8edabe28 100644 --- a/Themes/_fallback/Scripts/03 Gameplay.lua +++ b/Themes/_fallback/Scripts/03 Gameplay.lua @@ -51,7 +51,10 @@ end -- ScoreKeeperClass: -- [en] Determines the correct ScoreKeeper class to use. function ScoreKeeperClass() - sGame = GAMESTATE:GetCurrentGame():GetName() + -- rave scorekeeper + if GAMESTATE:GetPlayMode() == 'PlayMode_Rave' then return "ScoreKeeperRave" end + + local sGame = GAMESTATE:GetCurrentGame():GetName() local ScoreKeepers = { -- xxx: allow for ScoreKeeperShared when needed dance = "ScoreKeeperNormal",