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)

This commit is contained in:
AmeyMirchandani 2022-05-23 16:58:11 -04:00 committed by GitHub
parent 33b0c247ba
commit cd922fcfd0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
}
}