From cd922fcfd05b7e78f8b000b3db037780e427865b Mon Sep 17 00:00:00 2001 From: AmeyMirchandani <84045757+AmeyMirchandani@users.noreply.github.com> Date: Mon, 23 May 2022 16:58:11 -0400 Subject: [PATCH] Changed -3 loyalty ability on Elspeth Resplendent to not put chosen card from top 7 to the bottom of library along with the other 6, now goes to battlefield with shield counter (#8990) --- Mage.Sets/src/mage/cards/e/ElspethResplendent.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/e/ElspethResplendent.java b/Mage.Sets/src/mage/cards/e/ElspethResplendent.java index 036df34d816..1584ebf8e8f 100644 --- a/Mage.Sets/src/mage/cards/e/ElspethResplendent.java +++ b/Mage.Sets/src/mage/cards/e/ElspethResplendent.java @@ -144,8 +144,9 @@ class ElspethResplendentLookEffect extends OneShotEffect { permanent.addCounters(CounterType.SHIELD.createInstance(), source, game); } } + cards.remove(card); cards.retainZone(Zone.LIBRARY, game); - player.putCardsOnBottomOfLibrary(card, game, source, false); + player.putCardsOnBottomOfLibrary(cards, game, source, false); return true; } }