mirror of
https://github.com/correl/mage.git
synced 2024-11-16 03:00:12 +00:00
Fixed Heroism ability tax cost
This commit is contained in:
parent
1ad8529df8
commit
c08c5a149b
1 changed files with 1 additions and 0 deletions
|
@ -112,6 +112,7 @@ class HeroismEffect extends OneShotEffect {
|
||||||
Cost cost = new ManaCostsImpl("{2}{R}");
|
Cost cost = new ManaCostsImpl("{2}{R}");
|
||||||
List<Permanent> permanentsToPrevent = new ArrayList<>();
|
List<Permanent> permanentsToPrevent = new ArrayList<>();
|
||||||
for (Permanent permanent : game.getState().getBattlefield().getAllActivePermanents(filter, player.getId(), game)) {
|
for (Permanent permanent : game.getState().getBattlefield().getAllActivePermanents(filter, player.getId(), game)) {
|
||||||
|
cost.clearPaid();
|
||||||
String message = "Pay " + cost.getText() + "? If you don't, " + permanent.getLogName() + "'s combat damage will be prevented this turn.";
|
String message = "Pay " + cost.getText() + "? If you don't, " + permanent.getLogName() + "'s combat damage will be prevented this turn.";
|
||||||
if (player != null && player.chooseUse(Outcome.Neutral, message, source, game)) {
|
if (player != null && player.chooseUse(Outcome.Neutral, message, source, game)) {
|
||||||
if (cost.pay(source, game, source.getSourceId(), player.getId(), false, null)) {
|
if (cost.pay(source, game, source.getSourceId(), player.getId(), false, null)) {
|
||||||
|
|
Loading…
Reference in a new issue