forked from External/mage
removed <filter>.getDefault()
This commit is contained in:
parent
4ccf0f799d
commit
aa55beeb4e
110 changed files with 134 additions and 274 deletions
|
|
@ -82,7 +82,7 @@ class MassPolymorphEffect extends OneShotEffect<MassPolymorphEffect> {
|
|||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
int count;
|
||||
List<Permanent> creatures = game.getBattlefield().getAllActivePermanents(FilterCreaturePermanent.getDefault(), source.getControllerId());
|
||||
List<Permanent> creatures = game.getBattlefield().getAllActivePermanents(new FilterCreaturePermanent(), source.getControllerId());
|
||||
count = creatures.size();
|
||||
for (Permanent creature: creatures) {
|
||||
creature.moveToExile(null, null, source.getId(), game);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue