- Added Dimensional Breach and Lim-Dul's Vault

This commit is contained in:
swordshine
2013-03-02 01:32:35 +00:00
parent 3c906ae532
commit 5fc6b489dd
5 changed files with 38 additions and 3 deletions

View File

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

View File

@@ -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);
}