Added custom duration handling to delayed triggered abilities.

This commit is contained in:
LevelX2 2014-08-27 17:08:19 +02:00
parent a2fe968582
commit cb7d3ab284
3 changed files with 15 additions and 1 deletions

View file

@ -31,6 +31,7 @@ package mage.abilities;
import mage.abilities.effects.Effect;
import mage.constants.Duration;
import mage.constants.Zone;
import mage.game.Game;
/**
*
@ -74,4 +75,10 @@ public abstract class DelayedTriggeredAbility extends TriggeredAbilityImpl {
public Boolean getTriggerOnlyOnce() {
return triggerOnlyOnce;
}
public void init(Game game) {};
public boolean isInactive(Game game) {
return false;
}
}