unbotchamania 03 gameplay.lua

This commit is contained in:
AJ Kelly
2011-09-29 00:31:29 -05:00
parent bd28efc790
commit 5ee56942b9
+4 -2
View File
@@ -53,8 +53,10 @@ end
function ScoreKeeperClass() function ScoreKeeperClass()
-- rave scorekeeper -- rave scorekeeper
if GAMESTATE:GetPlayMode() == 'PlayMode_Rave' then return "ScoreKeeperRave" end if GAMESTATE:GetPlayMode() == 'PlayMode_Rave' then return "ScoreKeeperRave" end
local styleType = GAMESTATE:GetCurrentStyle():GetStyleType() if GAMESTATE:GetCurrentStyle() then
if styleType == 'StyleType_TwoPlayersSharedSides' then return "ScoreKeeperShared" end local styleType = GAMESTATE:GetCurrentStyle():GetStyleType()
if styleType == 'StyleType_TwoPlayersSharedSides' then return "ScoreKeeperShared" end
end
return "ScoreKeeperNormal" return "ScoreKeeperNormal"
end end