* Mass Polymorph - Fixed that it move cards to hand instead excile (#4420);

This commit is contained in:
Oleg Agafonov 2018-01-15 19:30:53 +04:00
parent bc3274b144
commit d4eda294f1

View file

@ -94,7 +94,7 @@ class MassPolymorphEffect extends OneShotEffect {
Set<Card> creaturesToExile = new HashSet<>();
creaturesToExile.addAll(creatures);
count = creatures.size();
controller.moveCards(creaturesToExile, Zone.HAND, source, game);
controller.moveCards(creaturesToExile, Zone.EXILED, source, game);
Cards revealed = new CardsImpl();
Set<Card> creatureCards = new LinkedHashSet<>();