From cd596e513377f5b0fddccda9b012f43d3e5dd1e5 Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Sun, 30 Jun 2019 21:53:20 +0400 Subject: [PATCH] [M20] fixed Battalion Foot Soldier with targets amount --- Mage.Sets/src/mage/cards/b/BattalionFootSoldier.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/b/BattalionFootSoldier.java b/Mage.Sets/src/mage/cards/b/BattalionFootSoldier.java index a3f1544bb0f..1d3b9ad80c3 100644 --- a/Mage.Sets/src/mage/cards/b/BattalionFootSoldier.java +++ b/Mage.Sets/src/mage/cards/b/BattalionFootSoldier.java @@ -34,7 +34,7 @@ public final class BattalionFootSoldier extends CardImpl { // When Battalion Foot Soldier enters the battlefield, you may search your library for any number of cards named Battalion Foot Soldier, reveal them, put them into your hand, then shuffle your library. this.addAbility(new EntersBattlefieldTriggeredAbility(new SearchLibraryPutInHandEffect( - new TargetCardInLibrary(0, 1, filter), true, true + new TargetCardInLibrary(0, Integer.MAX_VALUE, filter), true, true ), true)); }