- ChosenX will now also be stored on the card and not only the spellAbility.

- Fixed Tezzeret the Seeker.
This commit is contained in:
Sloth
2012-06-30 16:27:53 +00:00
parent 333c9bb709
commit bd882ca0b4
2 changed files with 2 additions and 1 deletions

View File

@@ -304,6 +304,7 @@ public class CostUtil {
final Object o = GuiUtils.chooseOne(card.toString() + " - Choose a Value for X", choiceArray);
final int chosenX = (Integer) o;
sa.setSVar("ChosenX", "Number$" + Integer.toString(chosenX));
card.setSVar("ChosenX", "Number$" + Integer.toString(chosenX));
return chosenX;
}