From 7c948b1896551f212732ec2969d015c1782358d1 Mon Sep 17 00:00:00 2001 From: Thad Ward Date: Wed, 10 Sep 2003 23:46:49 +0000 Subject: [PATCH] BeginnerHelper is not available for Solo or Doubles styles. --- stepmania/src/BeginnerHelper.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/stepmania/src/BeginnerHelper.cpp b/stepmania/src/BeginnerHelper.cpp index 4164e98749..ffce3b9ea0 100644 --- a/stepmania/src/BeginnerHelper.cpp +++ b/stepmania/src/BeginnerHelper.cpp @@ -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;