mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
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:
parent
35e7846319
commit
698f0d72f1
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue