mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
fixed Tezzeret, Artifice Master emblem not triggering
This commit is contained in:
parent
c169f07833
commit
d7914bca44
1 changed files with 4 additions and 2 deletions
|
|
@ -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
|
||||
));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue