diff --git a/src/main/java/forge/card/cost/CostPutCounter.java b/src/main/java/forge/card/cost/CostPutCounter.java index f981996efee..c7df070469d 100644 --- a/src/main/java/forge/card/cost/CostPutCounter.java +++ b/src/main/java/forge/card/cost/CostPutCounter.java @@ -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; }