From 58d5c945d19f9d282026361834acea3d93b6fbf5 Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Mon, 16 Dec 2019 21:18:59 -0500 Subject: [PATCH] fixed Tome of Legends triggering off of all commanders rather than just the controller's --- Mage.Sets/src/mage/cards/t/TomeOfLegends.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Mage.Sets/src/mage/cards/t/TomeOfLegends.java b/Mage.Sets/src/mage/cards/t/TomeOfLegends.java index b21286429ba..a1cd9cba250 100644 --- a/Mage.Sets/src/mage/cards/t/TomeOfLegends.java +++ b/Mage.Sets/src/mage/cards/t/TomeOfLegends.java @@ -12,8 +12,10 @@ import mage.abilities.effects.common.counter.AddCountersSourceEffect; import mage.cards.CardImpl; import mage.cards.CardSetInfo; import mage.constants.CardType; +import mage.constants.TargetController; import mage.counters.CounterType; import mage.filter.FilterPermanent; +import mage.filter.predicate.other.OwnerPredicate; import mage.filter.predicate.permanent.CommanderPredicate; import java.util.UUID; @@ -27,6 +29,7 @@ public final class TomeOfLegends extends CardImpl { static { filter.add(CommanderPredicate.instance); + filter.add(new OwnerPredicate(TargetController.YOU)); } public TomeOfLegends(UUID ownerId, CardSetInfo setInfo) {