mirror of
https://github.com/magefree/mage.git
synced 2026-01-24 04:09:54 -08:00
- Fixed Indomitable Creativity. Bug #3029
This commit is contained in:
parent
3a2c828fb8
commit
c4dc0222d8
3 changed files with 6 additions and 6 deletions
|
|
@ -143,12 +143,12 @@ class IndomitableCreativityEffect extends OneShotEffect {
|
|||
cards.add(card);
|
||||
}
|
||||
|
||||
if (card.isCreature() || card.isArtifact()) {
|
||||
controllerOfDestroyedCreature.moveCards(card, Zone.BATTLEFIELD, source, game);
|
||||
}
|
||||
|
||||
if (!cards.isEmpty()) {
|
||||
revealCards.addAll(cards);
|
||||
if (card.isCreature() || card.isArtifact()) {
|
||||
controllerOfDestroyedCreature.moveCards(card, Zone.EXILED, source, game);
|
||||
controllerOfDestroyedCreature.moveCards(card, Zone.BATTLEFIELD, source, game);
|
||||
}
|
||||
Set<Card> cardsToShuffle = cards.getCards(game);
|
||||
cardsToShuffle.remove(card);
|
||||
library.addAll(cardsToShuffle, game);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue