* Shaman of the Pack - Fixed that the lose life calculation did only count creatures.

This commit is contained in:
LevelX2 2016-05-08 08:41:29 +02:00
parent 661c9c985f
commit 4d1641538e

View file

@ -38,7 +38,7 @@ import mage.cards.CardImpl;
import mage.constants.CardType;
import mage.constants.Rarity;
import mage.constants.TargetController;
import mage.filter.common.FilterCreaturePermanent;
import mage.filter.FilterPermanent;
import mage.filter.predicate.mageobject.SubtypePredicate;
import mage.filter.predicate.permanent.ControllerPredicate;
import mage.target.common.TargetOpponent;
@ -48,8 +48,8 @@ import mage.target.common.TargetOpponent;
* @author fireshoes
*/
public class ShamanOfThePack extends CardImpl {
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent("equal to the number of elves you control");
private static final FilterPermanent filter = new FilterPermanent("equal to the number of elves you control");
static {
filter.add(new ControllerPredicate(TargetController.YOU));