From 3475f7866fa9beeadbaab1b1ac6ba9aaa2ce97a6 Mon Sep 17 00:00:00 2001 From: Agetian Date: Fri, 30 Sep 2016 05:19:46 +0000 Subject: [PATCH] - Fixed Gonti, Lord of Luxury revealing a face-down card to the player when the opponent casts it. --- .../src/main/java/forge/game/ability/effects/DigEffect.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forge-game/src/main/java/forge/game/ability/effects/DigEffect.java b/forge-game/src/main/java/forge/game/ability/effects/DigEffect.java index c6a16127d72..6463f0dd04f 100644 --- a/forge-game/src/main/java/forge/game/ability/effects/DigEffect.java +++ b/forge-game/src/main/java/forge/game/ability/effects/DigEffect.java @@ -285,7 +285,7 @@ public class DigEffect extends SpellAbilityEffect { } } - if (!changeValid.isEmpty()) { + if (!changeValid.isEmpty() && !sa.hasParam("ExileFaceDown")) { game.getAction().reveal(movedCards, chooser, true, chooser + " picked " + (movedCards.size() == 1 ? "this card" : "these cards") + " from "); }