mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
Fix Endless Whispers putting creatures onto the battlefield tapped.
This commit is contained in:
parent
3198558dd6
commit
fda424a1c5
1 changed files with 1 additions and 9 deletions
|
@ -84,18 +84,10 @@ public class EndlessWhispers extends CardImpl {
|
|||
class ReturnSourceToBattlefieldEffect extends OneShotEffect {
|
||||
|
||||
public ReturnSourceToBattlefieldEffect() {
|
||||
this(false);
|
||||
}
|
||||
|
||||
public ReturnSourceToBattlefieldEffect(boolean tapped) {
|
||||
super(Outcome.PutCreatureInPlay);
|
||||
staticText = "That player puts this card from its owner's graveyard onto the battlefield under his or her control";
|
||||
}
|
||||
|
||||
public ReturnSourceToBattlefieldEffect(boolean tapped, boolean ownerControl) {
|
||||
super(Outcome.PutCreatureInPlay);
|
||||
}
|
||||
|
||||
public ReturnSourceToBattlefieldEffect(final ReturnSourceToBattlefieldEffect effect) {
|
||||
super(effect);
|
||||
}
|
||||
|
@ -121,7 +113,7 @@ class ReturnSourceToBattlefieldEffect extends OneShotEffect {
|
|||
return false;
|
||||
}
|
||||
|
||||
return player.moveCards(card, Zone.BATTLEFIELD, source, game, true, false, false, null);
|
||||
return player.moveCards(card, Zone.BATTLEFIELD, source, game, false, false, false, null);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue