allow no reordering on zones other than library

This commit is contained in:
Northmoc
2021-04-14 11:28:59 -04:00
parent ef895777ca
commit ebe6a12555

View File

@@ -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