mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
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:
parent
33b0c247ba
commit
cd922fcfd0
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue