mirror of
https://github.com/correl/mage.git
synced 2025-01-11 19:13:02 +00:00
Fixed Vampire Lacerator ability message.
This commit is contained in:
parent
267ae4f559
commit
18fd84d7f3
2 changed files with 2 additions and 3 deletions
|
@ -65,8 +65,7 @@ public class VampireLacerator extends CardImpl<VampireLacerator> {
|
|||
new ConditionalOneShotEffect(
|
||||
new LoseLifeSourceEffect(1),
|
||||
new Unless( new TenOrLessLife(AN_OPPONENT) ),
|
||||
"At the beginning of your upkeep, you lose 1 "
|
||||
+ "life unless an opponent has 10 or less life."), false));
|
||||
"you lose 1 life unless an opponent has 10 or less life"), false));
|
||||
}
|
||||
|
||||
public VampireLacerator(final VampireLacerator card) {
|
||||
|
|
|
@ -31,6 +31,6 @@ public class BeginningOfControllerUpkeepTriggeredAbility extends TriggeredAbilit
|
|||
|
||||
@Override
|
||||
public String getRule() {
|
||||
return "At the beginning of your upkeep, " + effects.getText(this) + ".";
|
||||
return "At the beginning of your upkeep, " + effects.getText(this);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue