* Hellkite Tyrant - Fixed wrong duration of control effect (fixes #752).

This commit is contained in:
LevelX2 2015-02-26 01:04:09 +01:00
parent d45c8b52dd
commit 35f249cd44

View file

@ -139,7 +139,7 @@ class HellkiteTyrantControlEffect extends ContinuousEffectImpl {
private final UUID controllerId;
public HellkiteTyrantControlEffect(UUID controllerId) {
super(Duration.EndOfCombat, Layer.ControlChangingEffects_2, SubLayer.NA, Outcome.GainControl);
super(Duration.EndOfGame, Layer.ControlChangingEffects_2, SubLayer.NA, Outcome.GainControl);
this.controllerId = controllerId;
}