* Reflecting Pool - Fixed that mana from dynamic mana abilities were not taken into account (e.g. Gaea's Cradle or Serra's Sanctum).

This commit is contained in:
LevelX2 2016-12-16 18:38:40 +01:00
parent 2eae39b82f
commit 8d6d8d25e5
3 changed files with 34 additions and 7 deletions

View file

@ -115,4 +115,9 @@ public class DynamicManaAbility extends ActivatedManaAbilityImpl {
}
return newNetMana;
}
@Override
public boolean definesMana() {
return true;
}
}