don't show forced beginner mods in attack list

This commit is contained in:
Chris Danford
2005-04-26 20:46:06 +00:00
parent 2576c4a87a
commit 23ad0104c6
3 changed files with 8 additions and 2 deletions
+1 -1
View File
@@ -741,7 +741,7 @@ void ScreenGameplay::InitSongQueues()
AttackArray aa;
if( pSteps->GetDifficulty() == DIFFICULTY_BEGINNER && (bool)USE_FORCED_MODIFIERS_IN_BEGINNER )
aa.push_back( Attack(ATTACK_LEVEL_1, 0, 0, FORCED_MODIFIERS_IN_BEGINNER, false, true) );
aa.push_back( Attack(ATTACK_LEVEL_1, 0, 0, FORCED_MODIFIERS_IN_BEGINNER, false, true, false) ); // don't show in AttackList
m_asModifiersQueue[p].push_back( aa );
}