From 435ca51b4343883b37bb31d1594c8ca0966d2a36 Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Wed, 17 Feb 2010 20:31:40 -0600 Subject: [PATCH] make StepsOrTrailToColor actually return something instead of doing nothing --- Themes/_fallback/Scripts/02 Colors.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Themes/_fallback/Scripts/02 Colors.lua b/Themes/_fallback/Scripts/02 Colors.lua index 3837b298ab..b841d5a39d 100644 --- a/Themes/_fallback/Scripts/02 Colors.lua +++ b/Themes/_fallback/Scripts/02 Colors.lua @@ -204,7 +204,7 @@ function CustomDifficultyToLightColor( sCustomDifficulty ) end function StepsOrTrailToColor(StepsOrTrail) - CustomDifficultyToColor( StepsOrTrailToCustomDifficulty(stepsOrTrail) ); + return CustomDifficultyToColor( StepsOrTrailToCustomDifficulty(stepsOrTrail) ); end function StageToColor( stage )