[TLE] fix Dutiful Knowledge Seeker ability

This commit is contained in:
theelk801 2025-11-19 12:32:23 -05:00
parent 832ebf0096
commit 85b5f91936

View file

@ -2,7 +2,7 @@ package mage.cards.d;
import mage.MageInt; import mage.MageInt;
import mage.abilities.Ability; import mage.abilities.Ability;
import mage.abilities.common.PutIntoGraveFromAnywhereSourceTriggeredAbility; import mage.abilities.common.PutIntoLibraryOneOrMoreTriggeredAbility;
import mage.abilities.common.SimpleActivatedAbility; import mage.abilities.common.SimpleActivatedAbility;
import mage.abilities.costs.mana.GenericManaCost; import mage.abilities.costs.mana.GenericManaCost;
import mage.abilities.effects.common.PutOnLibraryTargetEffect; import mage.abilities.effects.common.PutOnLibraryTargetEffect;
@ -30,7 +30,7 @@ public final class DutifulKnowledgeSeeker extends CardImpl {
this.toughness = new MageInt(2); this.toughness = new MageInt(2);
// Whenever one or more cards are put into a library from anywhere, put a +1/+1 counter on this creature. // Whenever one or more cards are put into a library from anywhere, put a +1/+1 counter on this creature.
this.addAbility(new PutIntoGraveFromAnywhereSourceTriggeredAbility( this.addAbility(new PutIntoLibraryOneOrMoreTriggeredAbility(
new AddCountersSourceEffect(CounterType.P1P1.createInstance()) new AddCountersSourceEffect(CounterType.P1P1.createInstance())
)); ));