* Crown of Doom - Fixed wrong target definition.

This commit is contained in:
LevelX2 2014-12-26 21:01:05 +01:00
parent 9039eef0f9
commit dbfdae0d9c

View file

@ -48,7 +48,6 @@ import mage.constants.TargetController;
import mage.constants.Zone; import mage.constants.Zone;
import mage.filter.FilterPlayer; import mage.filter.FilterPlayer;
import mage.filter.common.FilterCreaturePermanent; import mage.filter.common.FilterCreaturePermanent;
import mage.filter.predicate.other.OwnerPredicate;
import mage.filter.predicate.other.PlayerPredicate; import mage.filter.predicate.other.PlayerPredicate;
import mage.game.Game; import mage.game.Game;
import mage.players.Player; import mage.players.Player;
@ -64,7 +63,7 @@ public class CrownOfDoom extends CardImpl {
private static final FilterPlayer filter = new FilterPlayer("player other than Crown of Doom's owner"); private static final FilterPlayer filter = new FilterPlayer("player other than Crown of Doom's owner");
static { static {
filter.add(new OwnerPredicate(TargetController.NOT_YOU)); filter.add(new PlayerPredicate(TargetController.NOT_YOU));
} }
public CrownOfDoom(UUID ownerId) { public CrownOfDoom(UUID ownerId) {