* Fixed that some mana effects did not send all neded events (prevented that Contamination chnaged conditonal mana from Cavern of Souls to black mana).

This commit is contained in:
LevelX2 2015-05-11 15:33:22 +02:00
parent 17f9bf57d0
commit eec65a2881
6 changed files with 33 additions and 4 deletions

View file

@ -59,7 +59,7 @@ public class AddContinuousEffectToGame extends OneShotEffect {
@Override
public boolean apply(Game game, Ability source) {
ContinuousEffect effectToAdd = (ContinuousEffect) effect.copy();
ContinuousEffect effectToAdd = effect.copy();
game.addEffect(effectToAdd, source);
return true;
}