mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
- Added Dimensional Breach and Lim-Dul's Vault
This commit is contained in:
@@ -1319,8 +1319,9 @@ public class ChangeZoneAi extends SpellAbilityAi {
|
||||
player.shuffle();
|
||||
}
|
||||
|
||||
if ((!ZoneType.Battlefield.equals(destination) && !"Card".equals(type) && !defined)
|
||||
|| (sa.hasParam("Reveal") && !fetched.isEmpty())) {
|
||||
if (((!ZoneType.Battlefield.equals(destination) && !"Card".equals(type) && !defined)
|
||||
|| (sa.hasParam("Reveal") && !fetched.isEmpty()))
|
||||
&& !sa.hasParam("NoReveal")) {
|
||||
final String picked = player + " picked:";
|
||||
if (fetched.size() > 0) {
|
||||
GuiChoose.one(picked, fetched);
|
||||
|
||||
@@ -143,7 +143,7 @@ public class DigEffect extends SpellAbilityEffect {
|
||||
}
|
||||
// Singletons.getModel().getGameAction().revealToCopmuter(top.toArray());
|
||||
// - for when it exists
|
||||
} else if (choser.isHuman()) {
|
||||
} else if (choser.isHuman() && !sa.hasParam("NoLooking")) {
|
||||
// show the user the revealed cards
|
||||
GuiChoose.one("Looking at cards from library", top);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user