Fix that Koth of the Hammer could target only mountains you control

This commit is contained in:
Quercitron 2015-11-19 03:20:52 +03:00
parent 05a789cd8b
commit 50a02403a0

View file

@ -73,7 +73,7 @@ public class KothOfTheHammer extends CardImpl {
static {
filter.add(new SubtypePredicate("Mountain"));
filter.add(new ControllerPredicate(TargetController.YOU));
filterCount.add(new SubtypePredicate("Mountain"));
filterCount.add(new ControllerPredicate(TargetController.YOU));
}