From 4c4bdacf10a04479289a729dcd1c7269244e934f Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Sat, 6 Nov 2004 23:53:57 +0000 Subject: [PATCH] don't even choose a tutorial song in random --- stepmania/src/MusicWheel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/MusicWheel.cpp b/stepmania/src/MusicWheel.cpp index 75f8cace0c..06b4f5210e 100644 --- a/stepmania/src/MusicWheel.cpp +++ b/stepmania/src/MusicWheel.cpp @@ -1551,7 +1551,7 @@ Song *MusicWheel::GetPreferredSelectionForRandomOrPortal() if( !sPreferredGroup.empty() && wid[iSelection].m_sSectionName != sPreferredGroup ) continue; - if( i < 900 && pSong->IsTutorial() ) + if( pSong->IsTutorial() ) continue; FOREACH( Difficulty, vDifficultiesToRequire, d )