mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
- little fix
This commit is contained in:
parent
d6127d4498
commit
0262c7f0f9
1 changed files with 3 additions and 4 deletions
|
@ -14,11 +14,10 @@ import mage.filter.StaticFilters;
|
|||
import mage.game.Game;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.watchers.common.AttackedThisTurnWatcher;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.abilities.common.AttackingCreaturePutIntoGraveyardTriggeredAbility;
|
||||
import mage.filter.FilterPermanent;
|
||||
import mage.filter.common.FilterControlledCreaturePermanent;
|
||||
import mage.filter.common.FilterCreaturePermanent;
|
||||
import mage.filter.predicate.permanent.AttackingPredicate;
|
||||
|
||||
/**
|
||||
|
@ -26,7 +25,7 @@ import mage.filter.predicate.permanent.AttackingPredicate;
|
|||
*/
|
||||
public final class KardurDoomscourge extends CardImpl {
|
||||
|
||||
private static final FilterPermanent filter = new FilterControlledCreaturePermanent("an attacking creature");
|
||||
private static final FilterPermanent filter = new FilterCreaturePermanent("an attacking creature");
|
||||
|
||||
static {
|
||||
filter.add(AttackingPredicate.instance);
|
||||
|
|
Loading…
Reference in a new issue