Add Ertai's Meddling

This commit is contained in:
Alumi
2021-03-19 16:11:46 +00:00
committed by Michael Kamensky
parent ef3e91e8a8
commit 903b0130c7
9 changed files with 67 additions and 9 deletions

View File

@@ -1856,7 +1856,11 @@ public class PlayerControllerHuman extends PlayerController implements IGameCont
if (next.isCopied()) {
if (next.isSpell()) {
// copied spell always add to stack
player.getGame().getStackZone().add(next.getHostCard());
if (!next.getHostCard().isInZone(ZoneType.Stack)) {
next.setHostCard(player.getGame().getAction().moveToStack(next.getHostCard(), next));
} else {
player.getGame().getStackZone().add(next.getHostCard());
}
}
// TODO check if static abilities needs to be run for things affecting the copy?
if (next.isMayChooseNewTargets()) {