mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
fixed The Ur-Dragon only allowing lands to be put into play
This commit is contained in:
parent
a21496ef5f
commit
00b4d8d482
1 changed files with 1 additions and 2 deletions
|
@ -44,7 +44,6 @@ import mage.cards.CardImpl;
|
|||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.*;
|
||||
import mage.filter.FilterCard;
|
||||
import mage.filter.StaticFilters;
|
||||
import mage.filter.predicate.mageobject.SubtypePredicate;
|
||||
import mage.game.Game;
|
||||
import mage.game.events.GameEvent;
|
||||
|
@ -207,7 +206,7 @@ class TheUrDragonEffect extends OneShotEffect {
|
|||
if (attackingDragons > 0) {
|
||||
controller.drawCards(attackingDragons, game);
|
||||
}
|
||||
return new PutCardFromHandOntoBattlefieldEffect(StaticFilters.FILTER_CARD_LAND_A).apply(game, source);
|
||||
return new PutCardFromHandOntoBattlefieldEffect().apply(game, source);
|
||||
}
|
||||
}
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue