Adjust canLookAtNextTopLibraryCard

This commit is contained in:
Raphael-Schulz 2021-08-01 17:05:52 +02:00
parent 9c093b39f9
commit e1f018d53d

View file

@ -431,7 +431,7 @@ public abstract class ContinuousEffectImpl extends EffectImpl implements Continu
StackObject stackObject = game.getStack().getFirst();
return !(stackObject instanceof Spell)
|| !Zone.LIBRARY.equals(((Spell) stackObject).getFromZone())
|| ((Spell) stackObject).getCurrentActivatingManaAbilitiesStep() == ActivationManaAbilityStep.AFTER; // mana payment finished
|| stackObject.getStackAbility().getManaCostsToPay().isPaid(); // mana payment finished
}
return true;
}