mirror of
https://github.com/magefree/mage.git
synced 2026-01-09 12:22:10 -08:00
Re-implement Leonin Arbiter using continuous rule modifying effect. Fix #483
This commit is contained in:
parent
0fc47df5a9
commit
4307b3f01b
2 changed files with 99 additions and 53 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue