mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 20:28:00 +00:00
- Updated Gemstone Array cost string to parse properly with new Mana objects
This commit is contained in:
@@ -16605,7 +16605,7 @@ public class CardFactory implements NewConstants {
|
|||||||
card.addSpellAbility(store);
|
card.addSpellAbility(store);
|
||||||
|
|
||||||
final Ability_Mana retrieve = new Ability_Mana(card,
|
final Ability_Mana retrieve = new Ability_Mana(card,
|
||||||
"Remove a charge counter from Gemstone Array: Add one mana of any color to your mana pool.") {
|
"0, Remove a charge counter from Gemstone Array: Add one mana of any color to your mana pool.") {
|
||||||
private static final long serialVersionUID = -2938965362221626028L;
|
private static final long serialVersionUID = -2938965362221626028L;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -16637,8 +16637,8 @@ public class CardFactory implements NewConstants {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void showMessage() {
|
public void showMessage() {
|
||||||
retrieve.choices_made[0] = Input_PayManaCostUtil.getShortColorString(AllZone.Display.getChoiceOptional(
|
retrieve.choices_made[0] = Input_PayManaCostUtil.getShortColorString((String)(AllZone.Display.getChoiceOptional(
|
||||||
"Select a Color", Constant.Color.onlyColors));
|
"Select a Color", Constant.Color.onlyColors)));
|
||||||
AllZone.Stack.add(retrieve);
|
AllZone.Stack.add(retrieve);
|
||||||
stop();
|
stop();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user