- Fixed ChosenX not reseting.

This commit is contained in:
Sloth
2012-07-18 08:59:53 +00:00
parent 74fd00175d
commit 3c0ae07572

View File

@@ -303,7 +303,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));
//sa.setSVar("ChosenX", "Number$" + Integer.toString(chosenX));
card.setSVar("ChosenX", "Number$" + Integer.toString(chosenX));
return chosenX;