fix Bloodcrazed Hoplite

should only be able to remove counters from opponent's creatures
This commit is contained in:
Neil Gentleman 2015-11-28 16:31:22 -08:00
parent 7996d02b1a
commit d857a2393f

View file

@ -72,7 +72,7 @@ public class BloodcrazedHoplite extends CardImpl {
this.addAbility(new HeroicAbility(new AddCountersSourceEffect(CounterType.P1P1.createInstance(), false)));
// Whenever a +1/+1 counter is placed on Bloodcrazed Hoplite, remove a +1/+1 counter from target creature an opponent controls.
Ability ability = new BloodcrazedHopliteTriggeredAbility();
ability.addTarget(new TargetCreaturePermanent());
ability.addTarget(new TargetCreaturePermanent(filter));
this.addAbility(ability);
}