Fix Bazaar Trademage's ETB triggered ability.

It's currently implemented as a replacement ability rather than a triggered ability.
This commit is contained in:
Eric Nelson 2020-05-27 21:01:40 -04:00 committed by GitHub
parent 35e7846319
commit 698f0d72f1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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