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. #5251
This commit is contained in:
parent
09f5af154e
commit
fa6c48ee56
1 changed files with 2 additions and 2 deletions
|
@ -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());
|
||||
|
|
Loading…
Add table
Reference in a new issue