* Witness the End - Fixed tooltip text.

This commit is contained in:
LevelX2 2016-01-12 15:47:12 +01:00
parent 52d8fce569
commit d0f38ffa53
2 changed files with 2 additions and 2 deletions

View file

@ -52,7 +52,7 @@ public class WitnessTheEnd extends CardImpl {
// Devoid
this.addAbility(new DevoidAbility(this.color));
// Target opponent exiles two cards from his or her hand and loses 2 life.
getSpellAbility().addEffect(new ExileFromZoneTargetEffect(Zone.HAND, null, "", new FilterCard(), 2));
getSpellAbility().addEffect(new ExileFromZoneTargetEffect(Zone.HAND, null, "", new FilterCard("cards"), 2));
Effect effect = new LoseLifeTargetEffect(2);
effect.setText("and loses 2 life");
getSpellAbility().addTarget(new TargetOpponent());

View file

@ -206,7 +206,7 @@ public abstract class CardImpl extends MageObjectImpl implements Card {
protected static final ArrayList<String> rulesError = new ArrayList<String>() {
{
add("Exception occured in rules generation");
add("Exception occurred in rules generation");
}
};