Some minor fixes to Idle Thoughts, Kithkin Zealot, Hallowed Burial, Endless Horizon.

This commit is contained in:
LevelX2 2013-10-10 08:13:30 +02:00
parent f34ecae48a
commit 6388c939ee
5 changed files with 41 additions and 64 deletions

View file

@ -59,8 +59,9 @@ public class ConditionalOneShotEffect extends OneShotEffect<ConditionalOneShotEf
public ConditionalOneShotEffect(ConditionalOneShotEffect effect) {
super(effect);
this.effect = (OneShotEffect) effect.effect.copy();
if (effect.otherwiseEffect != null)
if (effect.otherwiseEffect != null) {
this.otherwiseEffect = (OneShotEffect) effect.otherwiseEffect.copy();
}
this.condition = effect.condition;
}