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()
-- rave scorekeeper
if GAMESTATE:GetPlayMode() == 'PlayMode_Rave' then return "ScoreKeeperRave" end
local styleType = GAMESTATE:GetCurrentStyle():GetStyleType()
if styleType == 'StyleType_TwoPlayersSharedSides' then return "ScoreKeeperShared" end
if GAMESTATE:GetCurrentStyle() then
local styleType = GAMESTATE:GetCurrentStyle():GetStyleType()
if styleType == 'StyleType_TwoPlayersSharedSides' then return "ScoreKeeperShared" end
end
return "ScoreKeeperNormal"
end