small additional fix

This commit is contained in:
Evan Kranzler 2020-06-22 22:57:47 -04:00
parent dd22905e9d
commit 75220caf0f

View file

@ -76,7 +76,7 @@ class ChandrasIncineratorCostReductionEffect extends CostModificationEffectImpl
if (watcher == null) {
return true;
}
int reductionAmount = watcher.getDamage(source.getControllerId());
int reductionAmount = watcher.getDamage(source.getControllerId(), game);
CardUtil.reduceCost(abilityToModify, Math.max(0, reductionAmount));
return true;
}