- When an effect mills cards, pop up a dialog to show which cards got milled.

This commit is contained in:
Myrd
2014-12-08 06:18:11 +00:00
parent 23c41834aa
commit 2db80f506b

View File

@@ -1339,6 +1339,9 @@ public class Player extends GameEntity implements Comparable<Player> {
milled.add(game.getAction().moveTo(destination, lib.getFirst()));
}
}
// Reveal the milled cards, so players don't have to manually inspect the
// graveyard to figure out which ones were milled.
game.getAction().reveal(milled, this, false);
return milled;
}