mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 19:28:01 +00:00
- You can no longer use cards with "CARDNAME can't have counters placed on it." to pay PutCounter costs.
This commit is contained in:
@@ -48,7 +48,11 @@ public class CostPutCounter extends CostPart {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean canPay(SpellAbility ability, Card source, Player activator, Cost cost) {
|
public boolean canPay(SpellAbility ability, Card source, Player activator, Cost cost) {
|
||||||
// PutCounter can always be paid as a Cost
|
|
||||||
|
if(source.hasKeyword("CARDNAME can't have counters placed on it.")) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user