Commit 2073e2c1 authored by mercury233's avatar mercury233

fix Twin Twisters of Sky Striker

parent 59b2dbd1
...@@ -213,7 +213,8 @@ namespace WindBot.Game.AI.Decks ...@@ -213,7 +213,8 @@ namespace WindBot.Game.AI.Decks
{ {
foreach (ClientCard target in Enemy.GetSpells()) foreach (ClientCard target in Enemy.GetSpells())
{ {
targets.Add(target); if (target.IsFacedown() || target.HasType(CardType.Continuous) || target.HasType(CardType.Pendulum))
targets.Add(target);
if (targets.Count >= 2) if (targets.Count >= 2)
break; break;
} }
......
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