[CLB] Fix Lulu, Loyal Hollyphant

RevoltWatcher was mistakenly left out, which made the RevoltCondition not work.
This commit is contained in:
Grath 2023-02-22 00:50:22 -05:00
parent be60113085
commit 56dd62355c

View file

@ -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());