mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
fixed Ajani, Adversary of Tyrants emblem not triggereding (fixes #5115)
This commit is contained in:
parent
6c000d9177
commit
c169f07833
1 changed files with 4 additions and 3 deletions
|
|
@ -3,12 +3,13 @@ package mage.game.command.emblems;
|
|||
import mage.abilities.common.BeginningOfEndStepTriggeredAbility;
|
||||
import mage.abilities.effects.common.CreateTokenEffect;
|
||||
import mage.constants.TargetController;
|
||||
import mage.constants.Zone;
|
||||
import mage.game.command.Emblem;
|
||||
import mage.game.permanent.token.CatToken2;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author spjspj
|
||||
* @author TheElk801
|
||||
*/
|
||||
public class AjaniAdversaryOfTyrantsEmblem extends Emblem {
|
||||
|
||||
|
|
@ -17,8 +18,8 @@ public class AjaniAdversaryOfTyrantsEmblem extends Emblem {
|
|||
this.setName("Emblem Ajani");
|
||||
this.setExpansionSetCodeForImage("M19");
|
||||
this.getAbilities().add(new BeginningOfEndStepTriggeredAbility(
|
||||
new CreateTokenEffect(new CatToken2(), 3),
|
||||
TargetController.YOU, false
|
||||
Zone.COMMAND, new CreateTokenEffect(new CatToken2(), 3),
|
||||
TargetController.YOU, null, false
|
||||
));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue