forked from External/mage
removed redundant calls to copy()
This commit is contained in:
parent
2d0842f320
commit
35d993c3c1
8 changed files with 11 additions and 11 deletions
|
|
@ -93,7 +93,7 @@ public class GainAbilityControlledEffect extends ContinuousEffectImpl<GainAbilit
|
|||
for (Permanent perm: game.getBattlefield().getAllActivePermanents(filter, source.getControllerId())) {
|
||||
if (!this.affectedObjectsSet || objects.contains(perm.getId())) {
|
||||
if (!(excludeSource && perm.getId().equals(source.getSourceId()))) {
|
||||
perm.addAbility(ability.copy());
|
||||
perm.addAbility(ability);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue