mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 04:08:01 +00:00
- Fixed Serene Remembrance.
This commit is contained in:
@@ -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());
|
||||
|
||||
Reference in New Issue
Block a user