fix DefaultCpuModifiers not applied if you start in dance and switch to rave

This commit is contained in:
Chris Danford
2004-05-16 20:58:59 +00:00
parent e1617a3104
commit a20cc8b1f4
3 changed files with 7 additions and 6 deletions
+3 -2
View File
@@ -276,9 +276,10 @@ void GameState::PlayersFinalized()
m_pCurSong = pProfile->m_pLastSong;
}
FOREACH_CpuPlayer( pn )
FOREACH_PlayerNumber( pn )
{
ApplyModifiers( pn, DEFAULT_CPU_MODIFIERS );
if( !IsHumanPlayer(pn) )
ApplyModifiers( pn, DEFAULT_CPU_MODIFIERS );
}
}