Fixed Vampire Lacerator ability message.

This commit is contained in:
magenoxx 2011-05-20 21:23:18 +04:00
parent 267ae4f559
commit 18fd84d7f3
2 changed files with 2 additions and 3 deletions

View file

@ -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) {

View file

@ -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);
}
}