mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 05:09:16 -08:00
* Commander - Fixed that commander with flash wrongly couldn't be cast from command zone using flash.
This commit is contained in:
parent
7de00610e8
commit
84246e1935
1 changed files with 2 additions and 4 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue