diff --git a/Mage.Sets/src/mage/sets/riseoftheeldrazi/TrainingGrounds.java b/Mage.Sets/src/mage/sets/riseoftheeldrazi/TrainingGrounds.java index cd2d65b70b9..8f71e1445b6 100644 --- a/Mage.Sets/src/mage/sets/riseoftheeldrazi/TrainingGrounds.java +++ b/Mage.Sets/src/mage/sets/riseoftheeldrazi/TrainingGrounds.java @@ -93,7 +93,7 @@ class TrainingGroundsCostReductionEffect extends ContinuousEffectImpl permanents = game.getBattlefield().getAllActivePermanents(filter); + List permanents = game.getBattlefield().getActivePermanents(filter, source.getControllerId(), source.getSourceId(), game); if ( permanents != null && !permanents.isEmpty() ) { for ( Permanent permanent : permanents ) { diff --git a/Mage.Sets/src/mage/sets/scarsofmirrodin/CopperhornScout.java b/Mage.Sets/src/mage/sets/scarsofmirrodin/CopperhornScout.java index ab6259a0ef1..6a4d33adb1c 100644 --- a/Mage.Sets/src/mage/sets/scarsofmirrodin/CopperhornScout.java +++ b/Mage.Sets/src/mage/sets/scarsofmirrodin/CopperhornScout.java @@ -38,6 +38,7 @@ import mage.abilities.Ability; import mage.abilities.TriggeredAbilityImpl; import mage.abilities.effects.OneShotEffect; import mage.cards.CardImpl; +import mage.filter.common.FilterControlledCreaturePermanent; import mage.filter.common.FilterCreaturePermanent; import mage.game.Game; import mage.game.events.GameEvent; @@ -114,10 +115,9 @@ class CopperhornScoutUntapEffect extends OneShotEffect creatures = game.getBattlefield().getAllActivePermanents(filter); + List creatures = game.getBattlefield().getActivePermanents(filter, source.getControllerId(), source.getSourceId(), game); for ( Permanent creature : creatures ) { if ( !creature.getId().equals(source.getSourceId()) ) {