mirror of
https://github.com/correl/mage.git
synced 2024-11-22 19:18:39 +00:00
Fixed Rowan Kenrith not dealing damage to the right creatures
This commit is contained in:
parent
37412e26c7
commit
0054074c18
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue