- Fixed Wheel of Sun and Moon.

This commit is contained in:
Sloth
2013-05-09 06:22:30 +00:00
parent 12997c4534
commit 537fd8dbd6

View File

@@ -897,7 +897,11 @@ public class ChangeZoneEffect extends SpellAbilityEffect {
} }
} }
if (sa.hasParam("Reveal") && !movedCards.isEmpty()) { if (sa.hasParam("Reveal") && !movedCards.isEmpty()) {
decider.getController().reveal(card + " - Revealed card: ", movedCards, origin.get(0), player); ZoneType zt = null;
if (!origin.isEmpty()) {
zt = origin.get(0);
}
decider.getController().reveal(card + " - Revealed card: ", movedCards, zt, player);
} }
if ((origin.contains(ZoneType.Library) && !destination.equals(ZoneType.Library) && !defined) if ((origin.contains(ZoneType.Library) && !destination.equals(ZoneType.Library) && !defined)