Experiment: don't restrict halfdouble & routine.

I'm sure someone wants to see these in all difficulty levels.

Revert this if it becomes too crazy.
This commit is contained in:
Jason Felds
2011-03-06 18:57:29 -05:00
parent 81a8fb2a09
commit eae575a246
-9
View File
@@ -1055,15 +1055,6 @@ void Song::AutoGen( StepsType ntTo, StepsType ntFrom )
{
Steps* pNewNotes = new Steps;
pNewNotes->AutogenFrom( pOriginalNotes, ntTo );
// Only generate Medium difficulty steps for Pump-Halfdouble, as
// that seems to be the only difficulty Half-doubles charts use,
// going by Pump Pro. -aj
if(ntTo == StepsType_pump_halfdouble && pNewNotes->GetDifficulty() != Difficulty_Medium)
continue;
// Only generate Medium difficulty steps for Routine modes. -aj
if( (ntTo == StepsType_dance_routine || ntTo == StepsType_pump_routine )
&& pNewNotes->GetDifficulty() != Difficulty_Medium)
continue;
this->AddSteps( pNewNotes );
}
}