mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
fixed Whirlwind Denial (removed unnecessary pay dialogs)
This commit is contained in:
parent
08b906010d
commit
b011ddf942
1 changed files with 2 additions and 1 deletions
|
@ -67,7 +67,8 @@ class WhirlwindDenialEffect extends OneShotEffect {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
Cost cost = new GenericManaCost(4);
|
Cost cost = new GenericManaCost(4);
|
||||||
if (player.chooseUse(outcome, "Pay {4} to prevent " + stackObject.getIdName() + " from being countered?", source, game)
|
if (cost.canPay(source, source.getSourceId(), source.getControllerId(), game)
|
||||||
|
&& player.chooseUse(outcome, "Pay {4} to prevent " + stackObject.getIdName() + " from being countered?", source, game)
|
||||||
&& cost.pay(source, game, source.getSourceId(), source.getControllerId(), false)) {
|
&& cost.pay(source, game, source.getSourceId(), source.getControllerId(), false)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue