* Mayael's Aria - Fixed that only creatures with power 5 or greater got the +1/+1 counter.

This commit is contained in:
LevelX2 2016-02-08 19:06:23 +01:00
parent f350dd71c9
commit 60a3ced53a

View file

@ -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);
}
}