From b755dc5b523c4498f1ff418891c5397a13d152c2 Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Tue, 27 Sep 2011 22:05:09 -0500 Subject: [PATCH] handle rave scorekeeper --- Themes/_fallback/Scripts/03 Gameplay.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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",