forked from External/mage
* Mayael's Aria - Fixed that only creatures with power 5 or greater got the +1/+1 counter.
This commit is contained in:
parent
f350dd71c9
commit
60a3ced53a
1 changed files with 1 additions and 1 deletions
|
|
@ -97,7 +97,7 @@ class MayaelsAriaEffect extends OneShotEffect {
|
|||
FilterCreaturePermanent filter = new FilterCreaturePermanent();
|
||||
filter.add(new PowerPredicate(Filter.ComparisonType.GreaterThan, 4));
|
||||
if (game.getState().getBattlefield().countAll(filter, controller.getId(), game) > 0) {
|
||||
for (Permanent creature : game.getBattlefield().getAllActivePermanents(filter, source.getControllerId(), game)) {
|
||||
for (Permanent creature : game.getBattlefield().getAllActivePermanents(source.getControllerId())) {
|
||||
creature.addCounters(CounterType.P1P1.createInstance(), game);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue