Protect only if we are actually needing to protect the card the ability will work on.

This commit is contained in:
Seravy
2018-02-19 13:14:16 +01:00
parent 04260a7f45
commit 8d4f72c691

View File

@@ -180,7 +180,7 @@ public class ProtectAi extends SpellAbilityAi {
}
// Affecting single card
if (cards.size() == 1) {
if ((getProtectCreatures(ai, sa)).size() > 0) {
if ((getProtectCreatures(ai, sa)).contains(cards.get(0))) {
return true;
}
}