* Vaultbreaker - Fixed hat the discard was wrongly random.

This commit is contained in:
LevelX2 2015-01-22 08:16:14 +01:00
parent c8eb9f00a9
commit 81c2b3e473

View file

@ -88,7 +88,7 @@ class VaultbreakerEffect extends OneShotEffect {
public boolean apply(Game game, Ability source) {
Player controller = game.getPlayer(source.getControllerId());
if (controller != null) {
Cards discardedCard = controller.discard(1, true, source, game);
Cards discardedCard = controller.discard(1, false, source, game);
if (discardedCard != null) {
controller.drawCards(1, game);
return true;