* The Abyss - Fixed target choosing of players not controlling the Abyss concerning hexproof / shroud.

This commit is contained in:
LevelX2 2015-07-25 10:35:05 +02:00
parent fcc97c3f4c
commit e708061c5a

View file

@ -97,6 +97,8 @@ class TheAbyssTriggeredAbility extends TriggeredAbilityImpl {
filter.add(Predicates.not(new CardTypePredicate(CardType.ARTIFACT)));
filter.add(new ControllerIdPredicate(player.getId()));
Target target = new TargetCreaturePermanent(filter);
target.setAbilityController(getControllerId());
target.setTargetController(player.getId());
this.getTargets().clear();
this.getTargets().add(target);
return true;