forked from External/mage
Radiate says "permanent or player" not "creature or player". Fixed.
This commit is contained in:
parent
7f22f527fe
commit
57284eac76
1 changed files with 2 additions and 2 deletions
|
|
@ -37,8 +37,8 @@ import mage.constants.CardType;
|
|||
import mage.constants.Rarity;
|
||||
import mage.filter.FilterInPlay;
|
||||
import mage.filter.FilterSpell;
|
||||
import mage.filter.common.FilterCreatureOrPlayer;
|
||||
import mage.filter.common.FilterInstantOrSorcerySpell;
|
||||
import mage.filter.common.FilterPermanentOrPlayer;
|
||||
import mage.filter.predicate.ObjectPlayer;
|
||||
import mage.filter.predicate.ObjectPlayerPredicate;
|
||||
import mage.game.Game;
|
||||
|
|
@ -128,7 +128,7 @@ class SpellWithOnlyPermanentOrPlayerTargetsPredicate implements ObjectPlayerPred
|
|||
class RadiateEffect extends CopySpellForEachItCouldTargetEffect<MageItem> {
|
||||
|
||||
public RadiateEffect() {
|
||||
this(new FilterCreatureOrPlayer());
|
||||
this(new FilterPermanentOrPlayer());
|
||||
}
|
||||
|
||||
public RadiateEffect(RadiateEffect effect) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue