mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
* Crown of Doom - Fixed wrong target definition.
This commit is contained in:
parent
9039eef0f9
commit
dbfdae0d9c
1 changed files with 1 additions and 2 deletions
|
@ -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) {
|
||||||
|
|
Loading…
Reference in a new issue