This commit is contained in:
Alex W. Jackson 2022-09-17 09:27:49 -04:00
parent 7c67acf139
commit 639277402d
5 changed files with 40 additions and 43 deletions

View file

@ -765,15 +765,6 @@ public class ContinuousEffects implements Serializable {
public void applySpliceEffects(Ability abilityToModify, Game game) {
// add effects from splice card to spell ability on activate/cast
// splice spell - spell can't be spliced again
if (CardUtil.isSpliceAbility(abilityToModify, game)) {
return;
}
// fused spell - can be spliced only to main fused ability, not to parts
if (CardUtil.isFusedPartAbility(abilityToModify, game)) {
return;
}
List<SpliceCardEffect> spliceEffects = getApplicableSpliceCardEffects(game, abilityToModify.getControllerId());
// get the applyable splice abilities
List<Ability> spliceAbilities = new ArrayList<>();