Fixed Rowan Kenrith not dealing damage to the right creatures

This commit is contained in:
Evan Kranzler 2018-05-31 11:44:07 -04:00
parent 37412e26c7
commit 0054074c18

View file

@ -176,7 +176,7 @@ class RowanKenrithDamageEffect extends OneShotEffect {
public boolean apply(Game game, Ability source) { public boolean apply(Game game, Ability source) {
FilterCreaturePermanent filter = new FilterCreaturePermanent(); FilterCreaturePermanent filter = new FilterCreaturePermanent();
filter.add(new TappedPredicate()); filter.add(new TappedPredicate());
filter.add(new ControllerIdPredicate(source.getControllerId())); filter.add(new ControllerIdPredicate(source.getFirstTarget()));
return new DamageAllEffect(3, filter).apply(game, source); return new DamageAllEffect(3, filter).apply(game, source);
} }
} }