Merge pull request #10054 from Grath/grath/fix-lulu

[CLB] Fix Lulu, Loyal Hollyphant
This commit is contained in:
Oleg Agafonov 2023-02-25 12:41:00 +04:00 committed by GitHub
commit 50caccabb6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,6 +18,7 @@ import mage.counters.CounterType;
import mage.filter.FilterPermanent; import mage.filter.FilterPermanent;
import mage.filter.common.FilterControlledCreaturePermanent; import mage.filter.common.FilterControlledCreaturePermanent;
import mage.filter.predicate.permanent.TappedPredicate; import mage.filter.predicate.permanent.TappedPredicate;
import mage.watchers.common.RevoltWatcher;
import java.util.UUID; import java.util.UUID;
@ -51,7 +52,7 @@ public final class LuluLoyalHollyphant extends CardImpl {
TargetController.YOU, RevoltCondition.instance, false TargetController.YOU, RevoltCondition.instance, false
); );
ability.addEffect(new UntapAllEffect(filter).setText(", then untap them")); ability.addEffect(new UntapAllEffect(filter).setText(", then untap them"));
this.addAbility(ability); this.addAbility(ability, new RevoltWatcher());
// Choose a Background // Choose a Background
this.addAbility(ChooseABackgroundAbility.getInstance()); this.addAbility(ChooseABackgroundAbility.getInstance());