mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00: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.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…
Reference in a new issue