fixed Tezzeret, Artifice Master emblem not triggering

This commit is contained in:
Evan Kranzler 2018-07-06 09:46:59 -04:00
parent c169f07833
commit d7914bca44

View file

@ -3,13 +3,14 @@ package mage.game.command.emblems;
import mage.abilities.common.BeginningOfEndStepTriggeredAbility;
import mage.abilities.effects.common.search.SearchLibraryPutInPlayEffect;
import mage.constants.TargetController;
import mage.constants.Zone;
import mage.filter.common.FilterPermanentCard;
import mage.game.command.Emblem;
import mage.target.common.TargetCardInLibrary;
/**
*
* @author spjspj
* @author TheElk801
*/
public class TezzeretArtificeMasterEmblem extends Emblem {
@ -18,9 +19,10 @@ public class TezzeretArtificeMasterEmblem extends Emblem {
this.setName("Emblem Tezzeret");
this.setExpansionSetCodeForImage("M19");
this.getAbilities().add(new BeginningOfEndStepTriggeredAbility(
Zone.COMMAND,
new SearchLibraryPutInPlayEffect(
new TargetCardInLibrary(new FilterPermanentCard())
), TargetController.YOU, false
), TargetController.YOU, null, false
));
}
}