From 2af799954231d96f594cd08f3dab74b2c39f5b81 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sun, 1 Oct 2006 03:48:07 +0000 Subject: [PATCH] Fix crash. --- stepmania/Themes/default/Scripts/Branches.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/Themes/default/Scripts/Branches.lua b/stepmania/Themes/default/Scripts/Branches.lua index 4e264f31b7..a925c1fedd 100644 --- a/stepmania/Themes/default/Scripts/Branches.lua +++ b/stepmania/Themes/default/Scripts/Branches.lua @@ -144,7 +144,7 @@ end function GetGameplayNextScreen() Trace( "GetGameplayNextScreen: " ) - local Passed = not AllFailed() + local Passed = not STATSMAN:GetCurStageStats():AllFailed() Trace( " Passed = "..tostring(Passed) ) Trace( " IsCourseMode = "..tostring(GAMESTATE:IsCourseMode()) ) Trace( " IsExtraStage = "..tostring(GAMESTATE:IsExtraStage()) )