[ScoreKeeperRave] Fix an issue where the super meter would not decrease back to 1 after hitting the end of 3. (Fixes issue 314.)
This commit is contained in:
@@ -8,6 +8,11 @@ ________________________________________________________________________________
|
||||
StepMania 5.0 $next | 2011xxxx
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
2011/10/28
|
||||
----------
|
||||
* [ScoreKeeperRave] Fix an issue where the super meter would not decrease back
|
||||
to 1 after hitting the end of 3. (Fixes issue 314.) [AJ]
|
||||
|
||||
2011/10/27
|
||||
----------
|
||||
* [Default theme] Fixed the pref controlling timing segments on song meter. [FSX]
|
||||
|
||||
@@ -143,7 +143,7 @@ void ScoreKeeperRave::AddSuperMeterDelta( float fUnscaledPercentChange )
|
||||
{
|
||||
LaunchAttack( oldAL );
|
||||
if( newAL == NUM_ATTACK_LEVELS ) // hit upper bounds of meter
|
||||
m_pPlayerState->m_fSuperMeter -= 1.f;
|
||||
m_pPlayerState->m_fSuperMeter = 0.f;
|
||||
}
|
||||
|
||||
// mercy: if losing remove attacks on life drain
|
||||
|
||||
Reference in New Issue
Block a user