Refactored PW Attack Rule

This commit is contained in:
Anthony Calosa
2017-03-01 17:53:40 +08:00
parent 7627a00dce
commit b7dae1025b
7 changed files with 48 additions and 15 deletions

View File

@@ -260,7 +260,7 @@ bool Player::hasPossibleAttackers()
for (int j = 0; j < nbcards; ++j)
{
MTGCardInstance * c = z->cards[j];
if (c->canAttack() && c->isCreature())
if ((c->canAttack(true) || c->canAttack()) && c->isCreature())
return true;
}
return false;