* Fixed that player enchnatments were not correctly removed as they left the battlefield causing problems if they were cast again later in the game (fixes #1006).

This commit is contained in:
LevelX2 2015-06-05 00:50:31 +02:00
parent a50447c84d
commit 36eebfa317
4 changed files with 71 additions and 5 deletions

View file

@ -54,7 +54,6 @@ public class CurseOfDeathsHold extends CardImpl {
this.subtype.add("Aura");
this.subtype.add("Curse");
// Enchant player
TargetPlayer auraTarget = new TargetPlayer();
this.getSpellAbility().addTarget(auraTarget);
@ -106,5 +105,4 @@ class CurseOfDeathsHoldEffect extends ContinuousEffectImpl {
public CurseOfDeathsHoldEffect copy() {
return new CurseOfDeathsHoldEffect(this);
}
}
}