mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-11 16:26:22 +00:00
Solemnity doesn't prevent planeswalkers +0
This commit is contained in:
committed by
Hans Mackowiak
parent
409a3a65ce
commit
d8cd4297e9
@@ -141,7 +141,7 @@ public class CostPutCounter extends CostPartWithList {
|
||||
public final boolean canPay(final SpellAbility ability, final Player payer, final boolean effect) {
|
||||
final Card source = ability.getHostCard();
|
||||
if (this.payCostFromSource()) {
|
||||
return source.isInPlay() && source.canReceiveCounters(this.counter);
|
||||
return source.isInPlay() && (getAbilityAmount(ability) == 0 || source.canReceiveCounters(this.counter));
|
||||
}
|
||||
|
||||
// 3 Cards have Put a -1/-1 Counter on a Creature you control.
|
||||
|
||||
Reference in New Issue
Block a user