mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
Remove an extra incorrect check in ArtifactSourcePredicate
This commit is contained in:
parent
593df43758
commit
973c2a08e3
1 changed files with 1 additions and 4 deletions
|
|
@ -1,9 +1,6 @@
|
|||
|
||||
package mage.filter.predicate.ability;
|
||||
|
||||
import mage.MageObject;
|
||||
import mage.abilities.Ability;
|
||||
import mage.constants.AbilityType;
|
||||
import mage.filter.predicate.Predicate;
|
||||
import mage.game.Game;
|
||||
import mage.game.stack.StackAbility;
|
||||
|
|
@ -22,7 +19,7 @@ public class ArtifactSourcePredicate implements Predicate<StackObject> {
|
|||
public boolean apply(StackObject input, Game game) {
|
||||
if (input instanceof StackAbility) {
|
||||
StackAbility ability = (StackAbility) input;
|
||||
return ability.getSourceObject(game).isArtifact() && ability.getAbilityType() == AbilityType.ACTIVATED;
|
||||
return ability.getSourceObject(game).isArtifact();
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue