mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
commit
69d6b2c8f5
1 changed files with 2 additions and 2 deletions
|
@ -152,7 +152,7 @@ class WarpWorldEffect extends OneShotEffect {
|
||||||
if (card != null && (card.getCardType().contains(CardType.ARTIFACT)
|
if (card != null && (card.getCardType().contains(CardType.ARTIFACT)
|
||||||
|| card.getCardType().contains(CardType.CREATURE)
|
|| card.getCardType().contains(CardType.CREATURE)
|
||||||
|| card.getCardType().contains(CardType.LAND))) {
|
|| card.getCardType().contains(CardType.LAND))) {
|
||||||
card.putOntoBattlefield(game, Zone.HAND, source.getSourceId(), player.getId());
|
card.putOntoBattlefield(game, Zone.LIBRARY, source.getSourceId(), player.getId());
|
||||||
cards.remove(card);
|
cards.remove(card);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -166,7 +166,7 @@ class WarpWorldEffect extends OneShotEffect {
|
||||||
CardsImpl cards = cardsRevealed.get(player.getId());
|
CardsImpl cards = cardsRevealed.get(player.getId());
|
||||||
for (Card card : cards.getCards(game)) {
|
for (Card card : cards.getCards(game)) {
|
||||||
if (card != null && card.getCardType().contains(CardType.ENCHANTMENT)) {
|
if (card != null && card.getCardType().contains(CardType.ENCHANTMENT)) {
|
||||||
card.putOntoBattlefield(game, Zone.HAND, source.getSourceId(), player.getId());
|
card.putOntoBattlefield(game, Zone.LIBRARY, source.getSourceId(), player.getId());
|
||||||
cards.remove(card);
|
cards.remove(card);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue