- You can no longer use cards with "CARDNAME can't have counters placed on it." to pay PutCounter costs.

This commit is contained in:
Sloth
2011-09-15 19:59:02 +00:00
parent 0a414c62f5
commit ccff4ad20e

View File

@@ -48,7 +48,11 @@ public class CostPutCounter extends CostPart {
@Override
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;
}