Fixed Angel of Glory's Rise not bringing back Humans

This commit is contained in:
Evan Kranzler 2018-05-27 22:06:01 -04:00
parent 1f522f874a
commit ea0a677e46

View file

@ -103,7 +103,7 @@ class AngelOfGlorysRiseEffect extends OneShotEffect {
controller.moveCards(toExile, Zone.EXILED, source, game);
FilterCreatureCard filterHuman = new FilterCreatureCard();
filterHuman.add(new SubtypePredicate(SubType.HUMAN));
controller.moveCards(controller.getGraveyard().getCards(filterHuman, game), Zone.GRAVEYARD, source, game);
controller.moveCards(controller.getGraveyard().getCards(filterHuman, game), Zone.BATTLEFIELD, source, game);
}
return true;
}