Fix additional costs with Flashback.

This commit is contained in:
Nathaniel Brandes 2016-05-17 00:18:01 -07:00
parent a2c56d821c
commit 9e4442547d
2 changed files with 20 additions and 2 deletions

View file

@ -197,7 +197,6 @@ class FlashbackEffect extends OneShotEffect {
spellAbility.getManaCostsToPay().clear();
spellAbility.getManaCostsToPay().addAll(source.getManaCostsToPay());
// needed to get e.g. paid costs from Conflagrate
spellAbility.getCosts().clear();
for (Cost cost : source.getCosts()) {
if (!(cost instanceof VariableCost)) {
spellAbility.getCosts().add(cost);