Fixed that Haste effects given to Obzedat on enters the battlefield stayed after going back to hand and recasting of it.

This commit is contained in:
LevelX2 2014-03-14 15:05:36 +01:00
parent dc0d5a4bc8
commit d1082293a8
4 changed files with 12 additions and 6 deletions

View file

@ -109,6 +109,9 @@ public class GainAbilitySourceEffect extends ContinuousEffectImpl<GainAbilitySou
permanent.addAbility(ability, source.getSourceId(), game);
return true;
}
if (duration.equals(Duration.Custom)) {
this.discard();
}
}
return false;
}