mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 04:39:18 -08:00
Fixed Leeching Sliver bug
Following bugs fixed: No life loss from a trigger when Leeching Sliver attacks a planeswalker No life loss from a trigger when Leeching Sliver doesn't attack a player and another sliver does
This commit is contained in:
parent
8c017fe3d2
commit
1bae2b0b1e
2 changed files with 2 additions and 2 deletions
|
|
@ -61,7 +61,7 @@ public class LeechingSliver extends CardImpl {
|
|||
this.toughness = new MageInt(1);
|
||||
|
||||
// Whenever a Sliver you control attacks, defending player loses 1 life.
|
||||
this.addAbility(new AttacksAllTriggeredAbility(new LoseLifeDefendingPlayerEffect(1, true), false, filter, SetTargetPointer.PLAYER, false));
|
||||
this.addAbility(new AttacksAllTriggeredAbility(new LoseLifeDefendingPlayerEffect(1, false), false, filter, SetTargetPointer.PLAYER, false));
|
||||
}
|
||||
|
||||
public LeechingSliver(final LeechingSliver card) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue