1
0
mirror of synced 2024-11-24 15:40:22 +01:00

Fix AI judgement calculus

This commit is contained in:
0aubsq 2022-01-14 23:41:12 +01:00
parent 55b22de30f
commit fd184c1456

View File

@ -4256,7 +4256,7 @@ namespace TJAPlayer3
if (nDice < TJAPlayer3.ConfigIni.apAIPerformances[AILevel - 1].nBadOdds)
return E判定.Poor;
else if (nDice + TJAPlayer3.ConfigIni.apAIPerformances[AILevel - 1].nBadOdds
else if (nDice - TJAPlayer3.ConfigIni.apAIPerformances[AILevel - 1].nBadOdds
< TJAPlayer3.ConfigIni.apAIPerformances[AILevel - 1].nGoodOdds)
return E判定.Good;
}