mirror of
https://github.com/correl/mage.git
synced 2024-11-24 19:19:56 +00:00
Fix Ur-Dragon showing a cost reduction on itself.
It wasn't incorrectly applying it, but this improves the UI.
This commit is contained in:
parent
66d77801ef
commit
aa4cd89ac1
1 changed files with 2 additions and 0 deletions
|
@ -14,6 +14,7 @@ import mage.cards.CardImpl;
|
|||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.*;
|
||||
import mage.filter.FilterCard;
|
||||
import mage.filter.predicate.mageobject.AnotherPredicate;
|
||||
import mage.game.Game;
|
||||
import mage.game.events.GameEvent;
|
||||
import mage.game.permanent.Permanent;
|
||||
|
@ -27,6 +28,7 @@ public final class TheUrDragon extends CardImpl {
|
|||
|
||||
static {
|
||||
filter.add(SubType.DRAGON.getPredicate());
|
||||
filter.add(AnotherPredicate.instance);
|
||||
}
|
||||
|
||||
public TheUrDragon(UUID ownerId, CardSetInfo setInfo) {
|
||||
|
|
Loading…
Reference in a new issue