From 85b5f919368790755bb15c605d61a1eb8a0b054b Mon Sep 17 00:00:00 2001 From: theelk801 Date: Wed, 19 Nov 2025 12:32:23 -0500 Subject: [PATCH] [TLE] fix Dutiful Knowledge Seeker ability --- Mage.Sets/src/mage/cards/d/DutifulKnowledgeSeeker.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/d/DutifulKnowledgeSeeker.java b/Mage.Sets/src/mage/cards/d/DutifulKnowledgeSeeker.java index ce5ff3fb41c..8921f751bf4 100644 --- a/Mage.Sets/src/mage/cards/d/DutifulKnowledgeSeeker.java +++ b/Mage.Sets/src/mage/cards/d/DutifulKnowledgeSeeker.java @@ -2,7 +2,7 @@ package mage.cards.d; import mage.MageInt; import mage.abilities.Ability; -import mage.abilities.common.PutIntoGraveFromAnywhereSourceTriggeredAbility; +import mage.abilities.common.PutIntoLibraryOneOrMoreTriggeredAbility; import mage.abilities.common.SimpleActivatedAbility; import mage.abilities.costs.mana.GenericManaCost; import mage.abilities.effects.common.PutOnLibraryTargetEffect; @@ -30,7 +30,7 @@ public final class DutifulKnowledgeSeeker extends CardImpl { 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. - this.addAbility(new PutIntoGraveFromAnywhereSourceTriggeredAbility( + this.addAbility(new PutIntoLibraryOneOrMoreTriggeredAbility( new AddCountersSourceEffect(CounterType.P1P1.createInstance()) ));