mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
[NEO] fixed Mirror Box not boosting creatures (fixes #8779)
This commit is contained in:
parent
36a41a81a3
commit
286b3dad2a
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ class MirrorBoxBoostEffect extends ContinuousEffectImpl {
|
|||
public boolean apply(Game game, Ability source) {
|
||||
List<Permanent> permanents = game.getBattlefield().getActivePermanents(
|
||||
StaticFilters.FILTER_CONTROLLED_CREATURE,
|
||||
source.getSourceId(), source.getControllerId(), game
|
||||
source.getControllerId(), source.getSourceId(), game
|
||||
);
|
||||
for (Permanent permanent : game.getBattlefield().getActivePermanents(
|
||||
filter, source.getControllerId(), source.getSourceId(), game
|
||||
|
|
Loading…
Reference in a new issue