mirror of
https://github.com/correl/mage.git
synced 2025-01-12 03:00:13 +00:00
* Vaultbreaker - Fixed hat the discard was wrongly random.
This commit is contained in:
parent
c8eb9f00a9
commit
81c2b3e473
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ class VaultbreakerEffect extends OneShotEffect {
|
||||||
public boolean apply(Game game, Ability source) {
|
public boolean apply(Game game, Ability source) {
|
||||||
Player controller = game.getPlayer(source.getControllerId());
|
Player controller = game.getPlayer(source.getControllerId());
|
||||||
if (controller != null) {
|
if (controller != null) {
|
||||||
Cards discardedCard = controller.discard(1, true, source, game);
|
Cards discardedCard = controller.discard(1, false, source, game);
|
||||||
if (discardedCard != null) {
|
if (discardedCard != null) {
|
||||||
controller.drawCards(1, game);
|
controller.drawCards(1, game);
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue