add a TapAbility param for the CantBeActivated static ability

This commit is contained in:
slapshot5
2011-11-24 19:33:38 +00:00
parent 40b841274b
commit 4cb749bdfe

View File

@@ -75,6 +75,10 @@ public class StaticAbilityCantBeCast {
return false;
}
if (params.containsKey("TapAbility") && !(spellAbility.getPayCosts().getTap())) {
return false;
}
return true;
}