mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
* Wirewood Hivemaster - Fixed that the ability did not trigger for Elves of other players entering the battlefield.
This commit is contained in:
parent
58cc84b0d5
commit
ff99a9ba21
1 changed files with 2 additions and 2 deletions
|
@ -29,7 +29,7 @@ package mage.sets.legions;
|
||||||
|
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
import mage.MageInt;
|
import mage.MageInt;
|
||||||
import mage.abilities.common.EntersBattlefieldControlledTriggeredAbility;
|
import mage.abilities.common.EntersBattlefieldAllTriggeredAbility;
|
||||||
import mage.abilities.effects.common.CreateTokenEffect;
|
import mage.abilities.effects.common.CreateTokenEffect;
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
|
@ -64,7 +64,7 @@ public class WirewoodHivemaster extends CardImpl {
|
||||||
this.toughness = new MageInt(1);
|
this.toughness = new MageInt(1);
|
||||||
|
|
||||||
// Whenever another nontoken Elf enters the battlefield, you may put a 1/1 green Insect creature token onto the battlefield.
|
// Whenever another nontoken Elf enters the battlefield, you may put a 1/1 green Insect creature token onto the battlefield.
|
||||||
this.addAbility(new EntersBattlefieldControlledTriggeredAbility(Zone.BATTLEFIELD, new CreateTokenEffect(new InsectToken(), 1), filter, true));
|
this.addAbility(new EntersBattlefieldAllTriggeredAbility(Zone.BATTLEFIELD, new CreateTokenEffect(new InsectToken(), 1), filter, true));
|
||||||
}
|
}
|
||||||
|
|
||||||
public WirewoodHivemaster(final WirewoodHivemaster card) {
|
public WirewoodHivemaster(final WirewoodHivemaster card) {
|
||||||
|
|
Loading…
Reference in a new issue