mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
fixed Undying Flames not exiling cards
This commit is contained in:
parent
161edc0654
commit
8294b251e1
1 changed files with 1 additions and 2 deletions
|
@ -1,4 +1,3 @@
|
|||
|
||||
package mage.cards.u;
|
||||
|
||||
import java.util.UUID;
|
||||
|
@ -64,7 +63,7 @@ class UndyingFlamesEffect extends OneShotEffect {
|
|||
while (controller.getLibrary().hasCards() && controller.isInGame()) {
|
||||
Card card = controller.getLibrary().getFromTop(game);
|
||||
if (card != null) {
|
||||
controller.moveCards(card, Zone.LIBRARY, source, game);
|
||||
controller.moveCards(card, Zone.EXILED, source, game);
|
||||
if (!card.isLand()) {
|
||||
new DamageTargetEffect(card.getConvertedManaCost()).apply(game, source);
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue