spotted my error that made the quest mode not work. everything should be fine again

This commit is contained in:
jendave
2011-08-06 02:44:15 +00:00
parent fd9f203db1
commit 5ff8fad1fa

View File

@@ -1,4 +1,7 @@
package forge;
/**
* QuestData_State.java
*
@@ -6,7 +9,6 @@ package forge;
*/
import java.io.Serializable;
import java.util.ArrayList;
import java.util.HashMap;
@@ -33,5 +35,13 @@ public class QuestData_State implements Serializable {
* This constructor is used by QestData_State in the default package to create a replacement object for the
* obsolete class.
*/
public QuestData_State(int rankIndex, int win, int lost, String difficulty, ArrayList<String> cardPool, HashMap<String, Deck> myDecks, HashMap<String, Deck> aiDecks) {}
public QuestData_State(int rankIndex, int win, int lost, String difficulty, ArrayList<String> cardPool, HashMap<String, Deck> myDecks, HashMap<String, Deck> aiDecks) {
this.rankIndex = rankIndex;
this.win = win;
this.lost = lost;
this.difficulty = difficulty;
this.cardPool = cardPool;
this.myDecks = myDecks;
this.aiDecks = aiDecks;
}
}