mirror of
https://github.com/correl/mage.git
synced 2025-01-12 19:25:44 +00:00
* Grixis Grimblade - Fixed a bug that abilities checked for creatures instead of permanents.
This commit is contained in:
parent
65da75b1bc
commit
7ffde6b00b
1 changed files with 2 additions and 2 deletions
|
@ -41,7 +41,7 @@ import mage.constants.CardType;
|
|||
import mage.constants.Duration;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.Zone;
|
||||
import mage.filter.common.FilterControlledCreaturePermanent;
|
||||
import mage.filter.common.FilterControlledPermanent;
|
||||
import mage.filter.predicate.mageobject.MulticoloredPredicate;
|
||||
import mage.filter.predicate.permanent.AnotherPredicate;
|
||||
|
||||
|
@ -51,7 +51,7 @@ import mage.filter.predicate.permanent.AnotherPredicate;
|
|||
*/
|
||||
public class GrixisGrimblade extends CardImpl<GrixisGrimblade> {
|
||||
|
||||
private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("another multicolor permanent");
|
||||
private static final FilterControlledPermanent filter = new FilterControlledPermanent("another multicolor permanent");
|
||||
|
||||
static {
|
||||
filter.add(new MulticoloredPredicate());
|
||||
|
|
Loading…
Reference in a new issue