1
0
Fork 0
mirror of https://github.com/correl/mage.git synced 2025-04-08 09:11:04 -09:00

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) {
FilterCreaturePermanent filter = new FilterCreaturePermanent();
filter.add(new TappedPredicate());
filter.add(new ControllerIdPredicate(source.getControllerId()));
filter.add(new ControllerIdPredicate(source.getFirstTarget()));
return new DamageAllEffect(3, filter).apply(game, source);
}
}