- Fixed Serene Remembrance.

This commit is contained in:
Sloth
2013-04-30 06:27:19 +00:00
parent f10a207404
commit 5a1c3425d8

View File

@@ -920,9 +920,11 @@ public class ChangeZoneEffect extends SpellAbilityEffect {
game.getAction().moveToHand(tgtSA.getSourceCard());
} else if (srcSA.getParam("Destination").equals("BottomOfLibrary")) {
game.getAction().moveToBottomOfLibrary(tgtSA.getSourceCard());
} else if (srcSA.getParam("Destination").equals("ShuffleIntoLibrary")) {
} else if (srcSA.getParam("Destination").equals("Library")) {
game.getAction().moveToBottomOfLibrary(tgtSA.getSourceCard());
tgtSA.getSourceCard().getController().shuffle();
if (srcSA.hasParam("Shuffle")) {
tgtSA.getSourceCard().getOwner().shuffle();
}
} else {
throw new IllegalArgumentException("AbilityFactory_ChangeZone: Invalid Destination argument for card "
+ srcSA.getSourceCard().getName());