From ea99c7fb723d1b878d9d9019e1cbf6cb0efec0f0 Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Mon, 8 Jan 2018 10:24:26 +0400 Subject: [PATCH] * Voracious Vampire - Fixed missing ability text --- Mage.Sets/src/mage/cards/v/VoraciousVampire.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/v/VoraciousVampire.java b/Mage.Sets/src/mage/cards/v/VoraciousVampire.java index c45827d23ce..563661c7922 100644 --- a/Mage.Sets/src/mage/cards/v/VoraciousVampire.java +++ b/Mage.Sets/src/mage/cards/v/VoraciousVampire.java @@ -63,7 +63,7 @@ public class VoraciousVampire extends CardImpl { // When Voracious Vampire enters the battlefield, target Vampire you control gets +1/+1 and gains menace until end of turn. Ability ability = new EntersBattlefieldTriggeredAbility(new BoostTargetEffect(1, 1, Duration.EndOfTurn), false); Effect effect = new GainAbilityTargetEffect(new MenaceAbility(), Duration.EndOfTurn); - effect.setText("and gains menace"); + effect.setText("and gains menace until end of turn."); ability.addEffect(effect); ability.addTarget(new TargetControlledCreaturePermanent(new FilterControlledCreaturePermanent(SubType.VAMPIRE, "Vampire you control"))); this.addAbility(ability);