From a63ad8f99c5f73aafca0184d68b488be807a0d21 Mon Sep 17 00:00:00 2001 From: Bruno Pinheiro Date: Fri, 7 Feb 2025 10:24:13 +0000 Subject: [PATCH] Heaped Harvest - fixed that it trigger only once on enters and sacrifice (#13309) --- Mage.Sets/src/mage/cards/h/HeapedHarvest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/h/HeapedHarvest.java b/Mage.Sets/src/mage/cards/h/HeapedHarvest.java index ce26f3f44b6..55d52307517 100644 --- a/Mage.Sets/src/mage/cards/h/HeapedHarvest.java +++ b/Mage.Sets/src/mage/cards/h/HeapedHarvest.java @@ -26,7 +26,7 @@ public final class HeapedHarvest extends CardImpl { this.subtype.add(SubType.FOOD); // When Heaped Harvest enters and when you sacrifice it, you may search your library for a basic land card, put it onto the battlefield tapped, then shuffle. - this.addAbility(new OrTriggeredAbility(Zone.BATTLEFIELD, new SearchLibraryPutInPlayEffect( + this.addAbility(new OrTriggeredAbility(Zone.ALL, new SearchLibraryPutInPlayEffect( new TargetCardInLibrary(StaticFilters.FILTER_CARD_BASIC_LAND_A), true), true, "When {this} enters and when you sacrifice it, ", new EntersBattlefieldTriggeredAbility(null), new SacrificeSourceTriggeredAbility(null)