- Fix for cards retaining Battlefield state when using AF$ChangeZone with Destination$Library

This commit is contained in:
jendave
2011-08-06 14:18:18 +00:00
parent a15f74c7c0
commit b24d410559

View File

@@ -825,7 +825,9 @@ public class AbilityFactory_ChangeZone {
if (libraryPosition == -1)
libraryPosition = library.size();
library.add(tgtC, libraryPosition); //move to library
Card cardCopy = AllZone.CardFactory.copyCard(tgtC);
library.add(cardCopy, libraryPosition); //move to library
if (params.containsKey("Shuffle")) // for things like Gaea's Blessing
player.shuffle();