From 698f0d72f11da8b29f3a56088e856ec8a6f72768 Mon Sep 17 00:00:00 2001 From: Eric Nelson <1895280+Grath@users.noreply.github.com> Date: Wed, 27 May 2020 21:01:40 -0400 Subject: [PATCH] Fix Bazaar Trademage's ETB triggered ability. It's currently implemented as a replacement ability rather than a triggered ability. --- Mage.Sets/src/mage/cards/b/BazaarTrademage.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/b/BazaarTrademage.java b/Mage.Sets/src/mage/cards/b/BazaarTrademage.java index e2cdeab2071..942b4406b22 100644 --- a/Mage.Sets/src/mage/cards/b/BazaarTrademage.java +++ b/Mage.Sets/src/mage/cards/b/BazaarTrademage.java @@ -28,7 +28,7 @@ public final class BazaarTrademage extends CardImpl { this.addAbility(FlyingAbility.getInstance()); // When Bazaar Trademage enters the battlefield, draw two cards, then discard three cards. - this.addAbility(new EntersBattlefieldAbility(new DrawDiscardControllerEffect(2, 3))); + this.addAbility(new EntersBattlefieldTriggeredAbility(new DrawDiscardControllerEffect(2, 3))); } private BazaarTrademage(final BazaarTrademage card) {