Fixed the bug that Geistcatchers Rig's triggered ability did not work (issue #145).

This commit is contained in:
LevelX2 2013-02-23 23:14:20 +01:00
parent 7f880aa7aa
commit b30f1e22ae

View file

@ -62,6 +62,7 @@ public class GeistcatchersRig extends CardImpl<GeistcatchersRig> {
// When Geistcatcher's Rig enters the battlefield, you may have it deal 4 damage to target creature with flying.
Ability ability = new EntersBattlefieldTriggeredAbility(new DamageTargetEffect(4), true);
ability.addTarget(new TargetCreaturePermanent(filter));
this.addAbility(ability);
}
public GeistcatchersRig(final GeistcatchersRig card) {