Radiate says "permanent or player" not "creature or player". Fixed.

This commit is contained in:
Duncan Townsend 2015-01-29 01:17:30 -05:00
parent 7f22f527fe
commit 57284eac76
No known key found for this signature in database
GPG key ID: C00ECDF315F7A593

View file

@ -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) {