forked from External/mage
fix Awaken the Maelstrom
This commit is contained in:
parent
00ff663c40
commit
f7855dda8b
1 changed files with 2 additions and 2 deletions
|
|
@ -16,7 +16,7 @@ import mage.game.permanent.Permanent;
|
||||||
import mage.players.Player;
|
import mage.players.Player;
|
||||||
import mage.target.TargetPermanent;
|
import mage.target.TargetPermanent;
|
||||||
import mage.target.TargetPlayer;
|
import mage.target.TargetPlayer;
|
||||||
import mage.target.common.TargetControlledCreaturePermanent;
|
import mage.target.common.TargetControlledPermanent;
|
||||||
import mage.target.common.TargetCreaturePermanentAmount;
|
import mage.target.common.TargetCreaturePermanentAmount;
|
||||||
import mage.target.common.TargetPermanentAmount;
|
import mage.target.common.TargetPermanentAmount;
|
||||||
import mage.target.targetpointer.SecondTargetPointer;
|
import mage.target.targetpointer.SecondTargetPointer;
|
||||||
|
|
@ -97,7 +97,7 @@ class AwakenTheMaelstromEffect extends OneShotEffect {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void makeToken(Player player, Game game, Ability source) {
|
private void makeToken(Player player, Game game, Ability source) {
|
||||||
TargetPermanent target = new TargetControlledCreaturePermanent();
|
TargetPermanent target = new TargetControlledPermanent();
|
||||||
target.withNotTarget(true);
|
target.withNotTarget(true);
|
||||||
target.withChooseHint("to copy");
|
target.withChooseHint("to copy");
|
||||||
if (!target.canChoose(player.getId(), source, game)) {
|
if (!target.canChoose(player.getId(), source, game)) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue