From d7d776cd59280a685402d06a49f85aa926604e57 Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Thu, 15 Dec 2011 20:57:59 -0600 Subject: [PATCH] reorder some logic and fix a typo; good catch wolfman --- Themes/_fallback/Scripts/02 Branches.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Themes/_fallback/Scripts/02 Branches.lua b/Themes/_fallback/Scripts/02 Branches.lua index 959e499aa2..82bbd730fc 100644 --- a/Themes/_fallback/Scripts/02 Branches.lua +++ b/Themes/_fallback/Scripts/02 Branches.lua @@ -187,13 +187,13 @@ Branch = { if GAMESTATE:IsEventMode() or stagesLeft >= 1 then return "ScreenProfileSave" - elseif allFailed then - return "ScreenProfileSaveSummary" elseif song:IsLong() and maxStages <= 2 and stagesLeft < 1 and allFailed then return "ScreenProfileSaveSummary" elseif song:IsMarathon() and maxStages <= 3 and stagesLeft < 1 and allFailed then return "ScreenProfileSaveSummary" - elseif maxStages >= 2 and stagesLeft < 1 and failed then + elseif maxStages >= 2 and stagesLeft < 1 and allFailed then + return "ScreenProfileSaveSummary" + elseif allFailed then return "ScreenProfileSaveSummary" else return "ScreenProfileSave"