* Commander - Fixed that commander with flash wrongly couldn't be cast from command zone using flash.

This commit is contained in:
LevelX2 2014-07-31 14:17:04 +02:00
parent 7de00610e8
commit 84246e1935

View file

@ -61,10 +61,8 @@ public class Commander implements CommandObject{
abilites.add(new CastCommanderAbility(card));
for (Ability ability : card.getAbilities()) {
if (!(ability instanceof SpellAbility)) {
if (ability.getZone().match(Zone.COMMAND)){
Ability newAbility = ability.copy();
abilites.add(newAbility);
}
Ability newAbility = ability.copy();
abilites.add(newAbility);
}
}
}