mirror of
https://github.com/correl/mage.git
synced 2025-03-17 09:16:26 -09:00
Merge pull request #5253 from kevinwshin/FixPestilenceRats5251
Fixes Pestilence Rats
This commit is contained in:
commit
0117dd9ce7
1 changed files with 2 additions and 2 deletions
|
@ -12,7 +12,7 @@ import mage.constants.CardType;
|
||||||
import mage.constants.Duration;
|
import mage.constants.Duration;
|
||||||
import mage.constants.SubType;
|
import mage.constants.SubType;
|
||||||
import mage.constants.Zone;
|
import mage.constants.Zone;
|
||||||
import mage.filter.common.FilterControlledCreaturePermanent;
|
import mage.filter.FilterPermanent;
|
||||||
import mage.filter.predicate.mageobject.AnotherCardPredicate;
|
import mage.filter.predicate.mageobject.AnotherCardPredicate;
|
||||||
import mage.filter.predicate.mageobject.SubtypePredicate;
|
import mage.filter.predicate.mageobject.SubtypePredicate;
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@ import mage.filter.predicate.mageobject.SubtypePredicate;
|
||||||
*/
|
*/
|
||||||
public final class PestilenceRats extends CardImpl {
|
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{
|
static{
|
||||||
filter.add(new SubtypePredicate(SubType.RAT));
|
filter.add(new SubtypePredicate(SubType.RAT));
|
||||||
filter.add(new AnotherCardPredicate());
|
filter.add(new AnotherCardPredicate());
|
||||||
|
|
Loading…
Add table
Reference in a new issue