Commit 31dcf987 authored by mercury233's avatar mercury233

fix EvenlyMatchedToBP

parent 3d156c02
......@@ -177,7 +177,7 @@ namespace WindBot.Game.AI.Decks
private bool EvenlyMatchedToBP()
{
return Bot.HasInHand(CardId.EvenlyMatched) && Duel.Turn >= 2 && Enemy.GetFieldCount() >= 2;
return Bot.HasInHand(CardId.EvenlyMatched) && Bot.GetFieldCount() <= 1 && Duel.Turn >= 2 && Enemy.GetFieldCount() - Bot.GetFieldCount() >= 2;
}
private bool EvenlyMatchedeff()
......
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