mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-15 10:18:01 +00:00
spotted my error that made the quest mode not work. everything should be fine again
This commit is contained in:
@@ -1,4 +1,7 @@
|
|||||||
|
|
||||||
package forge;
|
package forge;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* QuestData_State.java
|
* QuestData_State.java
|
||||||
*
|
*
|
||||||
@@ -6,7 +9,6 @@ package forge;
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.HashMap;
|
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
|
* This constructor is used by QestData_State in the default package to create a replacement object for the
|
||||||
* obsolete class.
|
* 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;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user