* Fixed another problem with available mana generation (e.g. with Nykthos, Shrine to Nyx).

This commit is contained in:
LevelX2 2015-02-13 15:03:29 +01:00
parent 0722276ca4
commit 8620fe5a7d
3 changed files with 50 additions and 3 deletions

View file

@ -167,6 +167,6 @@ class NykthosDynamicManaEffect extends ManaEffect {
break;
}
}
return computedMana;
return computedMana.copy();
}
}