mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Fix IllegalArgumentException on Volcano Hellion echo trigger
This commit is contained in:
parent
a6c5209a2a
commit
2f93647196
1 changed files with 3 additions and 3 deletions
|
@ -3,7 +3,7 @@ package mage.abilities.effects.keyword;
|
||||||
import mage.abilities.Ability;
|
import mage.abilities.Ability;
|
||||||
import mage.abilities.Mode;
|
import mage.abilities.Mode;
|
||||||
import mage.abilities.costs.Cost;
|
import mage.abilities.costs.Cost;
|
||||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
import mage.abilities.costs.mana.GenericManaCost;
|
||||||
import mage.abilities.dynamicvalue.DynamicValue;
|
import mage.abilities.dynamicvalue.DynamicValue;
|
||||||
import mage.abilities.effects.OneShotEffect;
|
import mage.abilities.effects.OneShotEffect;
|
||||||
import mage.constants.AsThoughEffectType;
|
import mage.constants.AsThoughEffectType;
|
||||||
|
@ -41,13 +41,13 @@ public class EchoEffect extends OneShotEffect {
|
||||||
@Override
|
@Override
|
||||||
public boolean apply(Game game, Ability source) {
|
public boolean apply(Game game, Ability source) {
|
||||||
if (cost == null) {
|
if (cost == null) {
|
||||||
cost = new ManaCostsImpl<>(Integer.toString(amount.calculate(game, source, this)));
|
cost = new GenericManaCost(amount.calculate(game, source, this));
|
||||||
}
|
}
|
||||||
Player controller = game.getPlayer(source.getControllerId());
|
Player controller = game.getPlayer(source.getControllerId());
|
||||||
if (controller != null
|
if (controller != null
|
||||||
&& source.getSourceObjectIfItStillExists(game) != null) {
|
&& source.getSourceObjectIfItStillExists(game) != null) {
|
||||||
if (game.getContinuousEffects().asThough(source.getSourceId(), AsThoughEffectType.PAY_0_ECHO, source, source.getControllerId(), game) != null) {
|
if (game.getContinuousEffects().asThough(source.getSourceId(), AsThoughEffectType.PAY_0_ECHO, source, source.getControllerId(), game) != null) {
|
||||||
Cost altCost = new ManaCostsImpl<>("{0}");
|
Cost altCost = new GenericManaCost(0);
|
||||||
if (controller.chooseUse(Outcome.Benefit, "Pay {0} instead of the echo cost?", source, game)) {
|
if (controller.chooseUse(Outcome.Benefit, "Pay {0} instead of the echo cost?", source, game)) {
|
||||||
altCost.clearPaid();
|
altCost.clearPaid();
|
||||||
if (altCost.pay(source, game, source, source.getControllerId(), false, null)) {
|
if (altCost.pay(source, game, source, source.getControllerId(), false, null)) {
|
||||||
|
|
Loading…
Reference in a new issue