mirror of
https://github.com/correl/mage.git
synced 2024-12-24 11:50:45 +00:00
Fix #9584
This commit is contained in:
parent
9355c8ace3
commit
728bb83cd5
1 changed files with 2 additions and 1 deletions
|
@ -15,6 +15,7 @@ import mage.constants.Outcome;
|
|||
import mage.constants.Zone;
|
||||
import mage.filter.FilterCard;
|
||||
import mage.filter.StaticFilters;
|
||||
import mage.filter.common.FilterCreatureCard;
|
||||
import mage.filter.predicate.Predicate;
|
||||
import mage.game.Game;
|
||||
import mage.game.permanent.Permanent;
|
||||
|
@ -69,7 +70,7 @@ class EvolvingDoorEffect extends OneShotEffect {
|
|||
|
||||
static {
|
||||
for (int count = 1; count <= 6; count++) {
|
||||
FilterCard filter = new FilterCard(
|
||||
FilterCard filter = new FilterCreatureCard(
|
||||
"creature card that's exactly " +
|
||||
CardUtil.numberToText(count) +
|
||||
" color" + (count > 0 ? "s" : "")
|
||||
|
|
Loading…
Reference in a new issue