mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
* Curse of the Pierced Heart - Fixed that the ability triggered wrongly in the draw instead of the upkeep step.
This commit is contained in:
parent
0b05bdeeec
commit
d26cc4ac1b
1 changed files with 2 additions and 3 deletions
|
@ -58,7 +58,6 @@ public class CurseOfThePiercedHeart extends CardImpl {
|
|||
this.subtype.add("Aura");
|
||||
this.subtype.add("Curse");
|
||||
|
||||
|
||||
// Enchant player
|
||||
TargetPlayer target = new TargetPlayer();
|
||||
this.getSpellAbility().addTarget(target);
|
||||
|
@ -97,7 +96,7 @@ class CurseOfThePiercedHeartAbility extends TriggeredAbilityImpl {
|
|||
|
||||
@Override
|
||||
public boolean checkEventType(GameEvent event, Game game) {
|
||||
return event.getType() == EventType.DRAW_STEP_PRE;
|
||||
return event.getType() == EventType.UPKEEP_STEP_PRE;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -118,4 +117,4 @@ class CurseOfThePiercedHeartAbility extends TriggeredAbilityImpl {
|
|||
return "At the beginning of enchanted player's upkeep, Curse of the Pierced Heart deals 1 damage to that player.";
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue