From 9333a54e1190fac43487bc868007a116f0a66ba5 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Sun, 4 Feb 2018 17:59:29 +0100 Subject: [PATCH] * Coveted Peacock - Fixed that the Goad ability did not trigger. --- Mage.Sets/src/mage/cards/c/CovetedPeacock.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Mage.Sets/src/mage/cards/c/CovetedPeacock.java b/Mage.Sets/src/mage/cards/c/CovetedPeacock.java index 7f4a010b7c..2ed2d8e3ce 100644 --- a/Mage.Sets/src/mage/cards/c/CovetedPeacock.java +++ b/Mage.Sets/src/mage/cards/c/CovetedPeacock.java @@ -61,9 +61,10 @@ public class CovetedPeacock extends CardImpl { this.addAbility(FlyingAbility.getInstance()); // Whenever Coveted Peacock attacks, you may goad target creature defending player controls. - Ability ability = new AttacksTriggeredAbility(new GoadTargetEffect(), true, "Whenever {this} attacks, you may goad target creature defending player controls"); + Ability ability = new AttacksTriggeredAbility(new GoadTargetEffect(), true, "Whenever {this} attacks, you may goad target creature defending player controls."); ability.addTarget(new TargetCreaturePermanent(new FilterCreaturePermanent("creature defending player controls"))); originalId = ability.getOriginalId(); + this.addAbility(ability); } public CovetedPeacock(final CovetedPeacock card) {