mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
fixed Sling-Gang Lieutenant not causing life loss
This commit is contained in:
parent
a3a6c327ef
commit
4b5f3f74fd
1 changed files with 2 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue