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:
jbureau88 2023-05-03 11:02:00 -04:00 committed by GitHub
parent 66d77801ef
commit aa4cd89ac1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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) {