1
0
mirror of synced 2024-11-28 01:10:53 +01:00

一部のスキンの設定が機能しない問題の修正 (#358)

This commit is contained in:
Takkkom 2023-01-26 14:59:40 +09:00 committed by GitHub
parent b8334f6fb1
commit 888aead73b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4241,6 +4241,22 @@ namespace TJAPlayer3
Game_AIBattle_Judge_Number_Miss_Y[i] = int.Parse(strSplit[i]);
}
}
else if (strCommand == "Game_AIBattle_Judge_Number_Roll_X")
{
string[] strSplit = strParam.Split(',');
for (int i = 0; i < 2; i++)
{
Game_AIBattle_Judge_Number_Roll_X[i] = int.Parse(strSplit[i]);
}
}
else if (strCommand == "Game_AIBattle_Judge_Number_Roll_Y")
{
string[] strSplit = strParam.Split(',');
for (int i = 0; i < 2; i++)
{
Game_AIBattle_Judge_Number_Roll_Y[i] = int.Parse(strSplit[i]);
}
}
else if (strCommand == "Game_AIBattle_Judge_Number_Interval")
{
string[] strSplit = strParam.Split(',');