diff --git a/Mage/src/mage/target/common/TargetCreatureOrPlayer.java b/Mage/src/mage/target/common/TargetCreatureOrPlayer.java index 3be1902211..033bd88d5c 100644 --- a/Mage/src/mage/target/common/TargetCreatureOrPlayer.java +++ b/Mage/src/mage/target/common/TargetCreatureOrPlayer.java @@ -112,18 +112,6 @@ public class TargetCreatureOrPlayer extends TargetImpl { return false; } - public boolean canTarget(UUID controllerId, UUID id, Ability source, Game game) { - Permanent permanent = game.getPermanent(id); - if (permanent != null) { - if (source != null) - //TODO: check for replacement effects - return permanent.canBeTargetedBy(game.getObject(source.getSourceId())) && filter.match(permanent, controllerId, game); - else - return filter.match(permanent, controllerId, game); - } - return false; - } - /** * Checks if there are enough {@link Permanent} or {@link Player} that can be chosen. Should only be used * for Ability targets since this checks for protection, shroud etc.