@@ -253,7 +253,9 @@ bool Player::hasPossibleAttackers()
|
|||||||
for (int j = 0; j < nbcards; ++j)
|
for (int j = 0; j < nbcards; ++j)
|
||||||
{
|
{
|
||||||
MTGCardInstance * c = z->cards[j];
|
MTGCardInstance * c = z->cards[j];
|
||||||
if (c->canAttack())
|
if (!c->isTapped() &&
|
||||||
|
!c->hasSummoningSickness() &&
|
||||||
|
c->isCreature())
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
|
|||||||
Reference in New Issue
Block a user