gameplay cleanup

This commit is contained in:
Chris Danford
2008-03-28 12:25:32 +00:00
parent 9c595eba4b
commit c4f6a74a61
6 changed files with 65 additions and 70 deletions
+1 -4
View File
@@ -36,10 +36,7 @@ end
function DifficultyDisplayTypeToDarkColor( ddt )
local c = DifficultyDisplayTypeToColor(ddt);
c[1] = c[1]/2;
c[2] = c[2]/2;
c[3] = c[3]/2;
return c;
return { c[1]/2, c[2]/2, c[3]/2, c[4] };
end
function CourseDifficutlyToColor( cd )