1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-03-17 17:00:08 -09:00

Fixes Pestilence Rats to count all other rats in play instead of just other rat creatures in your control.

This commit is contained in:
Kevin Shin 2018-08-22 03:32:28 -05:00
parent 09f5af154e
commit fa6c48ee56

View file

@ -12,7 +12,7 @@ import mage.constants.CardType;
import mage.constants.Duration;
import mage.constants.SubType;
import mage.constants.Zone;
import mage.filter.common.FilterControlledCreaturePermanent;
import mage.filter.FilterPermanent;
import mage.filter.predicate.mageobject.AnotherCardPredicate;
import mage.filter.predicate.mageobject.SubtypePredicate;
@ -22,7 +22,7 @@ import mage.filter.predicate.mageobject.SubtypePredicate;
*/
public final class PestilenceRats extends CardImpl {
private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("other Rats on the battlefield");
private static final FilterPermanent filter = new FilterPermanent("other Rats on the battlefield");
static{
filter.add(new SubtypePredicate(SubType.RAT));
filter.add(new AnotherCardPredicate());