mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
allow no reordering on zones other than library
This commit is contained in:
@@ -232,7 +232,7 @@ public class DigUntilEffect extends SpellAbilityEffect {
|
||||
}
|
||||
} else {
|
||||
// Allow ordering the rest of the revealed cards
|
||||
if ((revealedDest.isKnown()) && revealed.size() >= 2) {
|
||||
if (revealedDest.isKnown() && revealed.size() >= 2 && !sa.hasParam("NoReordering")) {
|
||||
revealed = (CardCollection)p.getController().orderMoveToZoneList(revealed, revealedDest, sa);
|
||||
}
|
||||
if (revealedDest == ZoneType.Library && !shuffle
|
||||
|
||||
Reference in New Issue
Block a user