From 6ea5cb233cb7bcbfa6b1815403df261ec6ab9edb Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Sat, 26 Jun 2004 23:02:57 +0000 Subject: [PATCH] portal shouldn't unlock a locked song --- stepmania/src/MusicWheel.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/stepmania/src/MusicWheel.cpp b/stepmania/src/MusicWheel.cpp index 34ed1b33a6..d875ad38d7 100644 --- a/stepmania/src/MusicWheel.cpp +++ b/stepmania/src/MusicWheel.cpp @@ -1251,8 +1251,10 @@ bool MusicWheel::Select() // return true if this selection ends the screen return false; case TYPE_SONG: case TYPE_PORTAL: - if( !GAMESTATE->IsExtraStage() && !GAMESTATE->IsExtraStage2() ) - UNLOCKMAN->UnlockSong( m_CurWheelItemData[m_iSelection]->m_pSong ); + // Don't -permanently- unlock the song. Just let them play + // the unlocked song once. +// if( !GAMESTATE->IsExtraStage() && !GAMESTATE->IsExtraStage2() ) +// UNLOCKMAN->UnlockSong( m_CurWheelItemData[m_iSelection]->m_pSong ); return true; case TYPE_COURSE: return true;