mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 12:18:00 +00:00
- Fixed Serene Remembrance.
This commit is contained in:
@@ -920,9 +920,11 @@ public class ChangeZoneEffect extends SpellAbilityEffect {
|
|||||||
game.getAction().moveToHand(tgtSA.getSourceCard());
|
game.getAction().moveToHand(tgtSA.getSourceCard());
|
||||||
} else if (srcSA.getParam("Destination").equals("BottomOfLibrary")) {
|
} else if (srcSA.getParam("Destination").equals("BottomOfLibrary")) {
|
||||||
game.getAction().moveToBottomOfLibrary(tgtSA.getSourceCard());
|
game.getAction().moveToBottomOfLibrary(tgtSA.getSourceCard());
|
||||||
} else if (srcSA.getParam("Destination").equals("ShuffleIntoLibrary")) {
|
} else if (srcSA.getParam("Destination").equals("Library")) {
|
||||||
game.getAction().moveToBottomOfLibrary(tgtSA.getSourceCard());
|
game.getAction().moveToBottomOfLibrary(tgtSA.getSourceCard());
|
||||||
tgtSA.getSourceCard().getController().shuffle();
|
if (srcSA.hasParam("Shuffle")) {
|
||||||
|
tgtSA.getSourceCard().getOwner().shuffle();
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
throw new IllegalArgumentException("AbilityFactory_ChangeZone: Invalid Destination argument for card "
|
throw new IllegalArgumentException("AbilityFactory_ChangeZone: Invalid Destination argument for card "
|
||||||
+ srcSA.getSourceCard().getName());
|
+ srcSA.getSourceCard().getName());
|
||||||
|
|||||||
Reference in New Issue
Block a user