AbilityUtils: Splice only for Spells

This commit is contained in:
Hans Mackowiak
2019-07-08 07:43:56 +00:00
parent 8b268a3f05
commit cb7ab5b981

View File

@@ -1843,7 +1843,11 @@ public class AbilityUtils {
public static SpellAbility addSpliceEffects(final SpellAbility sa) {
final Card source = sa.getHostCard();
final Player player = sa.getActivatingPlayer();
if (!sa.isSpell() || source.isCopiedSpell()) {
return sa;
}
final CardCollectionView hand = player.getCardsIn(ZoneType.Hand);
if (hand.isEmpty()) {