refacted SourceTappedCondition to use a single enum

This commit is contained in:
Evan Kranzler 2022-02-02 21:35:20 -05:00
parent d54fdb71b1
commit 25f47bde63
47 changed files with 61 additions and 64 deletions

View file

@ -17,7 +17,7 @@ import mage.game.events.GameEvent;
public class DontUntapAsLongAsSourceTappedEffect extends ConditionalContinuousRuleModifyingEffect {
public DontUntapAsLongAsSourceTappedEffect() {
super(new DontUntapInControllersUntapStepTargetEffect(Duration.Custom), SourceTappedCondition.instance);
super(new DontUntapInControllersUntapStepTargetEffect(Duration.Custom), SourceTappedCondition.TAPPED);
staticText = "It doesn't untap during its controller's untap step for as long as {this} remains tapped.";
}