fixed Sling-Gang Lieutenant not causing life loss

This commit is contained in:
Evan Kranzler 2019-05-30 14:00:41 -04:00
parent a3a6c327ef
commit 4b5f3f74fd

View file

@ -15,6 +15,7 @@ import mage.constants.SubType;
import mage.filter.common.FilterControlledPermanent;
import mage.filter.predicate.mageobject.SubtypePredicate;
import mage.game.permanent.token.GoblinToken;
import mage.target.TargetPlayer;
import mage.target.common.TargetControlledPermanent;
import java.util.UUID;
@ -46,6 +47,7 @@ public final class SlingGangLieutenant extends CardImpl {
new SacrificeTargetCost(new TargetControlledPermanent(filter))
);
ability.addEffect(new GainLifeEffect(1).concatBy("and"));
ability.addTarget(new TargetPlayer());
this.addAbility(ability);
}