mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Thopter Engineer's haste effect fix
Limited the effect to only controlled creatures, as opposed to all creatures.
This commit is contained in:
parent
de4ab7c026
commit
ca2bff02ad
1 changed files with 2 additions and 2 deletions
|
@ -40,7 +40,7 @@ import mage.constants.CardType;
|
|||
import mage.constants.Duration;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.Zone;
|
||||
import mage.filter.common.FilterCreaturePermanent;
|
||||
import mage.filter.common.FilterControlledCreaturePermanent;
|
||||
import mage.filter.predicate.mageobject.CardTypePredicate;
|
||||
import mage.game.permanent.token.Token;
|
||||
|
||||
|
@ -50,7 +50,7 @@ import mage.game.permanent.token.Token;
|
|||
*/
|
||||
public class ThopterEngineer extends CardImpl {
|
||||
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("Artifact creatures");
|
||||
private static final FilterControlledCreaturePermanent filter = new FilterControlledCreaturePermanent("Artifact creatures");
|
||||
|
||||
static {
|
||||
filter.add(new CardTypePredicate(CardType.ARTIFACT));
|
||||
|
|
Loading…
Reference in a new issue