* Hunt the hunter - Fixed the target definition (3 instead of correctly 2 targets).

This commit is contained in:
LevelX2 2013-09-21 23:50:51 +02:00
parent eafa18a6e8
commit 3f92ec152b

View file

@ -74,7 +74,6 @@ public class HuntTheHunter extends CardImpl<HuntTheHunter> {
effect = new FightTargetsEffect();
effect.setText("It fights target green creature an opponent controls");
this.getSpellAbility().addEffect(effect);
this.getSpellAbility().addTarget(new TargetControlledCreaturePermanent(true));
Target target = new TargetCreaturePermanent(filterOpponentGreen);
target.setRequired(true);
this.getSpellAbility().addTarget(target);