mirror of
https://github.com/correl/mage.git
synced 2024-11-22 03:00:11 +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) {
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue