mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
[CLB] Fix Lulu, Loyal Hollyphant
RevoltWatcher was mistakenly left out, which made the RevoltCondition not work.
This commit is contained in:
parent
be60113085
commit
56dd62355c
1 changed files with 2 additions and 1 deletions
|
@ -18,6 +18,7 @@ import mage.counters.CounterType;
|
|||
import mage.filter.FilterPermanent;
|
||||
import mage.filter.common.FilterControlledCreaturePermanent;
|
||||
import mage.filter.predicate.permanent.TappedPredicate;
|
||||
import mage.watchers.common.RevoltWatcher;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
|
@ -51,7 +52,7 @@ public final class LuluLoyalHollyphant extends CardImpl {
|
|||
TargetController.YOU, RevoltCondition.instance, false
|
||||
);
|
||||
ability.addEffect(new UntapAllEffect(filter).setText(", then untap them"));
|
||||
this.addAbility(ability);
|
||||
this.addAbility(ability, new RevoltWatcher());
|
||||
|
||||
// Choose a Background
|
||||
this.addAbility(ChooseABackgroundAbility.getInstance());
|
||||
|
|
Loading…
Reference in a new issue