From 5f15227af2fb6312c95f03fb511ee62f494813ed Mon Sep 17 00:00:00 2001 From: xenohedron Date: Thu, 7 Mar 2024 22:29:06 -0500 Subject: [PATCH] fix The Fourteenth Doctor --- Mage.Sets/src/mage/cards/t/TheFourteenthDoctor.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/t/TheFourteenthDoctor.java b/Mage.Sets/src/mage/cards/t/TheFourteenthDoctor.java index dd4aa4bcc12..b6c83ee5ef0 100644 --- a/Mage.Sets/src/mage/cards/t/TheFourteenthDoctor.java +++ b/Mage.Sets/src/mage/cards/t/TheFourteenthDoctor.java @@ -3,7 +3,7 @@ package mage.cards.t; import mage.MageInt; import mage.MageObjectReference; import mage.abilities.Ability; -import mage.abilities.common.EntersBattlefieldTriggeredAbility; +import mage.abilities.common.EntersBattlefieldAbility; import mage.abilities.effects.OneShotEffect; import mage.abilities.effects.common.CastSourceTriggeredAbility; import mage.abilities.effects.common.CopyEffect; @@ -43,7 +43,7 @@ public final class TheFourteenthDoctor extends CardImpl { this.addAbility(new CastSourceTriggeredAbility(new TheFourteenthDoctorRevealEffect())); // You may have The Fourteenth Doctor enter the battlefield as a copy of a Doctor card in your graveyard that was put there from your library this turn. If you do, it gains haste until end of turn. - this.addAbility(new EntersBattlefieldTriggeredAbility(new TheFourteenthDoctorCopyEffect(), true)); + this.addAbility(new EntersBattlefieldAbility(new TheFourteenthDoctorCopyEffect(), true)); } private TheFourteenthDoctor(final TheFourteenthDoctor card) {