1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-11 01:01:05 -09:00
This commit is contained in:
Alex W. Jackson 2022-03-31 17:10:38 -04:00
parent cf931cb0b1
commit 2640877ddc

View file

@ -123,7 +123,7 @@ public class SpellsCostIncreasingAllEffect extends CostModificationEffectImpl {
} else { } else {
// get playable and other staff without put on stack // get playable and other staff without put on stack
// used at least for flashback ability because Flashback ability doesn't use stack // used at least for flashback ability because Flashback ability doesn't use stack
Card sourceCard = game.getCard(abilityToModify.getSourceId()); Card sourceCard = ((SpellAbility) abilityToModify).getCharacteristics(game);
return this.filter.match(sourceCard, game); return this.filter.match(sourceCard, game);
} }
} }