1
0
mirror of synced 2025-01-31 12:03:51 +01:00

(Pre. v0.5.0) Tower plays are now saved (ScoreRank field on the ini contains the highest floor reached)

This commit is contained in:
0aubsq 2021-10-17 23:08:48 +02:00
parent 89932ee98d
commit c6dfe0f47b

View File

@ -221,8 +221,17 @@ namespace TJAPlayer3
this.st演奏記録[0].nクリア[0] = Math.Max(ini.stセクション[0].nクリア[0], clearValue);
}
// 新記録スコアチェック
else // Tower
{
// Clear if top reached, then FC or DFC like any regular chart
// Score Rank cointains highest reached floor
if (CFloorManagement.CurrentNumberOfLives > 0)
this.st演奏記録[0].nクリア[0] = Math.Max(ini.stセクション[0].nクリア[0], this.nクリア);
this.st演奏記録[0].nスコアランク[0] = Math.Max(ini.stセクション[0].nスコアランク[0], CFloorManagement.LastRegisteredFloor);
}
// 新記録スコアチェック
if ((this.st演奏記録[0].nスコア > ini.stセクション[0].nスコア) && !TJAPlayer3.ConfigIni.b太鼓パートAutoPlay)
{
this.b新記録スコア[0] = true;