* Sacred Mesa - Fixed wrong creature type that can be sacrificed.

This commit is contained in:
user 2015-04-16 21:43:43 +02:00
parent 28fecfb3ec
commit 92d1e2c652

View file

@ -52,9 +52,9 @@ import mage.target.common.TargetControlledPermanent;
*/
public class SacredMesa extends CardImpl {
private static final FilterControlledPermanent filter = new FilterControlledPermanent("Pegasus");
private static final FilterControlledPermanent filter = new FilterControlledPermanent("a Pegasus");
static {
filter.add(new SubtypePredicate("a Pegasus"));
filter.add(new SubtypePredicate("Pegasus"));
}
public SacredMesa(UUID ownerId) {