mirror of
https://github.com/correl/mage.git
synced 2024-11-25 11:09:53 +00:00
small additional fix
This commit is contained in:
parent
dd22905e9d
commit
75220caf0f
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ class ChandrasIncineratorCostReductionEffect extends CostModificationEffectImpl
|
||||||
if (watcher == null) {
|
if (watcher == null) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
int reductionAmount = watcher.getDamage(source.getControllerId());
|
int reductionAmount = watcher.getDamage(source.getControllerId(), game);
|
||||||
CardUtil.reduceCost(abilityToModify, Math.max(0, reductionAmount));
|
CardUtil.reduceCost(abilityToModify, Math.max(0, reductionAmount));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue