Commit 3e8bb14c authored by mercury233's avatar mercury233

fix

parent b4fb58b9
......@@ -517,11 +517,10 @@ namespace WindBot.Game.AI.Decks
private bool FairyTailSnowsummon()
{
IList<ClientCard> list = Enemy.GetMonsters();
if(list!=null)
{
ClientCard target = AI.Utils.GetBestEnemyMonster(true);
if(target != null)
{
if(list.GetHighestAttackMonster().IsFaceup())
return true;
}
return false;
......@@ -533,7 +532,7 @@ namespace WindBot.Game.AI.Decks
if (Card.Location == CardLocation.MonsterZone)
{
AI.SelectCard(AI.Utils.GetBestEnemyMonster());
AI.SelectCard(AI.Utils.GetBestEnemyMonster(true));
return true;
}
else
......
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