1
0
mirror of synced 2024-11-24 07:30:21 +01:00
This commit is contained in:
0auBSQ 2023-02-21 03:59:40 +09:00
parent f28c949ff7
commit 396851a79c

View File

@ -1848,12 +1848,12 @@ namespace TJAPlayer3
if (nPlayer == 0)
{
_AIBattleState += 1;
_AIBattleState = Math.Min(AIBattleState, 9);
_AIBattleState = Math.Min(_AIBattleState, 9);
}
else if (nPlayer == 1)
{
_AIBattleState -= 1;
_AIBattleState = Math.Max(AIBattleState, -9);
_AIBattleState = Math.Max(_AIBattleState, -9);
}
TJAPlayer3.stage演奏ドラム画面.actMtaiko.BackSymbolEvent(nPlayer);
@ -2037,12 +2037,12 @@ namespace TJAPlayer3
if (nPlayer == 0)
{
_AIBattleState += 0.5f;
_AIBattleState = Math.Min(AIBattleState, 9);
_AIBattleState = Math.Min(_AIBattleState, 9);
}
else if (nPlayer == 1)
{
_AIBattleState -= 0.5f;
_AIBattleState = Math.Max(AIBattleState, -9);
_AIBattleState = Math.Max(_AIBattleState, -9);
}
TJAPlayer3.stage演奏ドラム画面.actMtaiko.BackSymbolEvent(nPlayer);