[PlayerStageStats] Hitting a mine no longer gives you full combo.
TODO: make this work with [Gameplay] MineHitIncrementsMissCombo metric
This commit is contained in:
@@ -8,6 +8,10 @@ ________________________________________________________________________________
|
|||||||
StepMania 5.0 $next | 20111xxx
|
StepMania 5.0 $next | 20111xxx
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
2011/11/25
|
||||||
|
----------
|
||||||
|
* [PlayerStageStats] Hitting a mine no longer gives you full combo. [AJ]
|
||||||
|
|
||||||
2011/11/24
|
2011/11/24
|
||||||
----------
|
----------
|
||||||
* [PlayerStageStats] Added GetFailed and GetNumControllerSteps Lua bindings. [AJ]
|
* [PlayerStageStats] Added GetFailed and GetNumControllerSteps Lua bindings. [AJ]
|
||||||
|
|||||||
@@ -530,6 +530,10 @@ bool PlayerStageStats::FullComboOfScore( TapNoteScore tnsAllGreaterOrEqual ) con
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// hit any mines? It's not a full combo.
|
||||||
|
if( m_iTapNoteScores[TNS_HitMine] > 0 )
|
||||||
|
return false;
|
||||||
|
|
||||||
// If has at least one of the judgments equal to or above, then is a full combo.
|
// If has at least one of the judgments equal to or above, then is a full combo.
|
||||||
for( int i=tnsAllGreaterOrEqual; i<NUM_TapNoteScore; i++ )
|
for( int i=tnsAllGreaterOrEqual; i<NUM_TapNoteScore; i++ )
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user