mirror of
https://github.com/magefree/mage.git
synced 2026-01-18 09:19:56 -08:00
[C13] Added Command Tower, Homeward Path, Contested Cliffs, Marath Will of the Wild.
This commit is contained in:
parent
acce5834df
commit
2c46929fff
16 changed files with 809 additions and 3 deletions
|
|
@ -323,7 +323,7 @@ public abstract class AbilityImpl<T extends AbilityImpl<T>> implements Ability {
|
|||
int xValue;
|
||||
if (!variableManaCost.isPaid()) { // should only happen for human players
|
||||
if (!noMana) {
|
||||
xValue = game.getPlayer(this.controllerId).announceXMana(variableManaCost.getMinX(), Integer.MAX_VALUE, "Announce the value for " + variableManaCost.getText(), game, this);
|
||||
xValue = game.getPlayer(this.controllerId).announceXMana(variableManaCost.getMinX(), variableManaCost.getMaxX(), "Announce the value for " + variableManaCost.getText(), game, this);
|
||||
int amountMana = xValue * variableManaCost.getMultiplier();
|
||||
StringBuilder manaString = new StringBuilder();
|
||||
if (variableManaCost.getFilter() == null || variableManaCost.getFilter().isColorless()) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue