fix Ds showing up for non-played songs

This commit is contained in:
AJ Kelly
2007-05-05 05:54:23 +00:00
parent 9711296680
commit c9b8d829fe
2 changed files with 2 additions and 1 deletions
@@ -9,12 +9,13 @@ local grades = {
Grade_Tier06 = 5;
Grade_Tier07 = 6;
Grade_Failed = 7;
Grade_None = 8;
};
local t = LoadActor( "grades" ) .. {
InitCommand=cmd(pause);
SetGradeCommand=function(self, params)
local state = grades[params.Grade] or grades.Grade_Tier07;
local state = grades[params.Grade] or grades.Grade_None;
state = state*2;
if params.PlayerNumber == PLAYER_2 then
Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB