Revert "Fixes abilities that may target either opponents or planeswalkers"

This commit is contained in:
Oleg Agafonov 2018-08-25 05:14:24 +04:00 committed by GitHub
parent 924504d183
commit 4f7cfc852d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -99,8 +99,7 @@ public class TargetPermanentOrPlayer extends TargetImpl {
}
if (player != null) {
if (!isNotTarget()) {
if (!player.canBeTargetedBy(targetSource, source.getControllerId(), game)
|| !filter.match(player, source.getSourceId(), source.getControllerId(), game)) {
if (!player.canBeTargetedBy(targetSource, source.getControllerId(), game)) {
return false;
}
}