This commit is contained in:
wuwenbo 2025-05-15 20:41:43 +08:00
parent e46623ee2d
commit 0145440c6a
2 changed files with 1 additions and 3 deletions

View File

@ -94,7 +94,7 @@ namespace Logic.AI
private void GeneratorGridActions(List<AIActionBase> aiActions)
{
if (_waitUnits.Count == 0 || aiActions == null) return;
if (_waitGrids.Count == 0 || aiActions == null) return;
for (int i = _waitGrids.Count - 1; i >= 0; i--)
{
GeneratorOneGridActions(_waitGrids[i], aiActions);

View File

@ -241,8 +241,6 @@ namespace Logic.AI
return score / 6f;
}
// 城市评分, 我方城市相对其他所有城市的差值
private void CalculateCityScore(MapData mapData, PlayerData playerData, CalculateResult result)
{