BeginnerHelper is not available for Solo or Doubles styles.

This commit is contained in:
Thad Ward
2003-09-10 23:46:49 +00:00
parent 2964e0dad5
commit 7c948b1896
+6
View File
@@ -91,6 +91,12 @@ bool BeginnerHelper::CanUse()
return false;
if( GAMESTATE->m_CurGame != GAME_DANCE )
return false;
if( GAMESTATE->m_CurStyle == STYLE_DANCE_SOLO )
return false;
// not sure how this could happen, since double steps should be
// basic/light or higher, but lets check for it anyway.
if( GAMESTATE->m_CurStyle == STYLE_DANCE_DOUBLE )
return false;
if( GAMESTATE->m_pCharacters.size() == 0 )
return false;