1
0
mirror of synced 2025-01-31 03:53:44 +01:00

Limit ADLIB coin bonuses to 10

This commit is contained in:
0aubsq 2022-05-21 14:12:02 +02:00
parent dc367e63b1
commit d30f025f2d

View File

@ -656,7 +656,7 @@ namespace TJAPlayer3
// ADLIB bonuses : 1 coin per ADLIB
for (int i = 0; i < TJAPlayer3.ConfigIni.nPlayerCount; i++)
{
this.nEarnedMedalsCount[i] += TJAPlayer3.stage演奏ドラム画面.CChartScore[i].nADLIB;
this.nEarnedMedalsCount[i] += Math.Min(10, TJAPlayer3.stage演奏ドラム画面.CChartScore[i].nADLIB);
}
if (TJAPlayer3.ConfigIni.b太鼓パートAutoPlay)