- Fix Cream of the Crop not revealing a card when x = 1.

This commit is contained in:
Sol
2016-06-24 21:45:22 +00:00
parent 4e57057150
commit 836b0121e9

View File

@@ -194,7 +194,7 @@ public class DigEffect extends SpellAbilityEffect {
}
else {
// If all the cards are valid choices, no need for a separate reveal dialog to the chooser.
if (p == chooser) {
if (p == chooser && destZone1ChangeNum > 1) {
delayedReveal = null;
}
valid = top;
@@ -369,6 +369,7 @@ public class DigEffect extends SpellAbilityEffect {
}
}
// TODO This should be somewhere else, maybe like CardUtil or something like that
// returns a List<Card> that is a subset of list with cards that share a name
// with a permanent on the battlefield
private static CardCollection sharesNameWithCardOnBattlefield(final Game game, final List<Card> list) {