* Fixed a problem that triggered abilities that face down permanents got from other sourced did not trigger (fixes #4571).

This commit is contained in:
LevelX2 2018-03-16 15:06:15 +01:00
parent fdd8cd0e09
commit b035d85f98
3 changed files with 60 additions and 14 deletions

View file

@ -56,7 +56,7 @@ import mage.target.common.TargetOpponent;
public class EndlessWhispers extends CardImpl {
public EndlessWhispers(UUID ownerId, CardSetInfo setInfo) {
super(ownerId,setInfo,new CardType[]{CardType.ENCHANTMENT},"{2}{B}{B}");
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{2}{B}{B}");
// Each creature has "When this creature dies, choose target opponent. That player puts this card from its owner's graveyard onto the battlefield under his or her control at the beginning of the next end step."
DelayedTriggeredAbility delayedAbility = new AtTheBeginOfNextEndStepDelayedTriggeredAbility(new ReturnSourceToBattlefieldEffect());