- Attempt to fix Lim-Dul's Vault by allowing the activating player of AF DigEffect to see the cards even if they're not actually moved.

This commit is contained in:
Agetian
2015-01-18 20:34:21 +00:00
parent c7a3c51541
commit fd7d644eec

View File

@@ -145,6 +145,11 @@ public class DigEffect extends SpellAbilityEffect {
else if (!sa.hasParam("NoLooking")) { else if (!sa.hasParam("NoLooking")) {
// show the user the revealed cards // show the user the revealed cards
delayedReveal = new DelayedReveal(top, srcZone, p); delayedReveal = new DelayedReveal(top, srcZone, p);
if (noMove) {
// Let the activating player see the cards even if they're not moved
game.getAction().revealTo(top, player);
}
} }
if (sa.hasParam("RememberRevealed") && !sa.hasParam("RevealValid") && hasRevealed) { if (sa.hasParam("RememberRevealed") && !sa.hasParam("RevealValid") && hasRevealed) {