From 0d1ccc0a13f1f478e7d64ca3d0934cd88a672831 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 11 Sep 2005 04:16:34 +0000 Subject: [PATCH] logic update --- stepmania/Themes/default/Scripts/Branches.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/Themes/default/Scripts/Branches.lua b/stepmania/Themes/default/Scripts/Branches.lua index b5c8dbc4db..9ca0a867fc 100644 --- a/stepmania/Themes/default/Scripts/Branches.lua +++ b/stepmania/Themes/default/Scripts/Branches.lua @@ -88,8 +88,8 @@ function GetEvaluationNextScreen( sNextScreen, sFailedScreen, sEndScreen ) return sFailedScreen end - local sType = GetTopScreenMetric( "Type" ) - if sType == "stage" then + local sIsStage = GetTopScreenMetric( "Summary" ) == "0" and not GAMESTATE:IsCourseMode() + if sIsStage then local bHasAnotherStage = GAMESTATE:HasEarnedExtraStage() bHasAnotherStage = bHasAnotherStage or not (GAMESTATE:IsFinalStage() or GAMESTATE:IsExtraStage() or GAMESTATE:IsExtraStage2() )