* Benalish Honor Guard - fixed +1/0 for all Legendary permanents instead creatures

This commit is contained in:
Oleg Agafonov 2018-04-20 03:09:43 +04:00
parent 4280d92a37
commit 3c80a915fa

View file

@ -40,6 +40,7 @@ import mage.constants.CardType;
import mage.constants.Duration;
import mage.constants.SuperType;
import mage.constants.Zone;
import mage.filter.common.FilterControlledCreaturePermanent;
import mage.filter.common.FilterControlledPermanent;
import mage.filter.predicate.mageobject.SupertypePredicate;
@ -49,8 +50,7 @@ import mage.filter.predicate.mageobject.SupertypePredicate;
*/
public class BenalishHonorGuard extends CardImpl {
private static final FilterControlledPermanent filter = new FilterControlledPermanent("legendary creature you control");
private static final FilterControlledPermanent filter = new FilterControlledCreaturePermanent("legendary creature you control");
static {
filter.add(new SupertypePredicate(SuperType.LEGENDARY));
}