Commit f386dc0e authored by 苍蓝's avatar 苍蓝

Update DefaultExecutor.cs

parent f35f444e
Pipeline #5911 passed with stage
in 1 minute and 10 seconds
...@@ -705,7 +705,7 @@ namespace WindBot.Game.AI ...@@ -705,7 +705,7 @@ namespace WindBot.Game.AI
ClientCard tributeCard = Bot.MonsterZone[j]; ClientCard tributeCard = Bot.MonsterZone[j];
if (tributeCard == null) continue; if (tributeCard == null) continue;
// if (tributeCard.GetDefensePower() +400 < Card.Attack) // if (tributeCard.GetDefensePower() +400 < Card.Attack)
if (tributeCard.Level +1 < Card.Level) if ((tributeCard.Level +1) < Card.Level)
tributecount--; tributecount--;
} }
return tributecount <= 0; return tributecount <= 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment