Re-implement Leonin Arbiter using continuous rule modifying effect. Fix #483

This commit is contained in:
Dustin Conrad 2014-08-19 18:41:17 -04:00
parent 0fc47df5a9
commit 4307b3f01b
2 changed files with 99 additions and 53 deletions

View file

@ -38,7 +38,11 @@ import mage.constants.Zone;
public abstract class SpecialAction extends ActivatedAbilityImpl {
public SpecialAction() {
super(AbilityType.SPECIAL_ACTION, Zone.ALL);
this(Zone.ALL);
}
public SpecialAction(Zone zone) {
super(AbilityType.SPECIAL_ACTION, zone);
this.usesStack = false;
}