Commit 3e8bb14c authored by mercury233's avatar mercury233

fix

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