From 8aee0c16419634e41375672b24df25ed9020044a Mon Sep 17 00:00:00 2001 From: xenohedron Date: Sat, 31 Aug 2024 23:37:07 -0400 Subject: [PATCH] fix #12689 (missing watcher in The Fourteenth Doctor) --- Mage.Sets/src/mage/cards/t/TheFourteenthDoctor.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/t/TheFourteenthDoctor.java b/Mage.Sets/src/mage/cards/t/TheFourteenthDoctor.java index b6c83ee5ef0..0f3e3e6a32d 100644 --- a/Mage.Sets/src/mage/cards/t/TheFourteenthDoctor.java +++ b/Mage.Sets/src/mage/cards/t/TheFourteenthDoctor.java @@ -43,7 +43,8 @@ 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 EntersBattlefieldAbility(new TheFourteenthDoctorCopyEffect(), true)); + this.addAbility(new EntersBattlefieldAbility(new TheFourteenthDoctorCopyEffect(), true), + new TheFourteenthDoctorWatcher()); } private TheFourteenthDoctor(final TheFourteenthDoctor card) {