- Fixed Teferi's Puzzle Box

This commit is contained in:
swordshine
2015-01-21 13:19:49 +00:00
parent 57478104de
commit 541f28c203
2 changed files with 3 additions and 2 deletions

View File

@@ -94,7 +94,8 @@ public class ChangeZoneAllEffect extends SpellAbilityEffect {
if ((destination == ZoneType.Library || destination == ZoneType.PlanarDeck)
&& !sa.hasParam("Shuffle") && cards.size() >= 2 && !random) {
cards = (CardCollection)sa.getActivatingPlayer().getController().orderMoveToZoneList(cards, destination);
Player p = AbilityUtils.getDefinedPlayers(source, sa.getParamOrDefault("DefinedPlayer", "You"), sa).get(0);
cards = (CardCollection) p.getController().orderMoveToZoneList(cards, destination);
}
if (destination.equals(ZoneType.Library) && random) {