remove todos
This commit is contained in:
parent
2fcf7612a6
commit
f209f5f37a
|
@ -35,8 +35,6 @@ public class Main {
|
||||||
public static final int vint = 1;
|
public static final int vint = 1;
|
||||||
|
|
||||||
// User Settings
|
// User Settings
|
||||||
// TODO: replace with user preference when config i/o is done
|
|
||||||
// also please double check that outpath is actually valid
|
|
||||||
public static String outpath = System.getProperty("user.home") + "/.firestar/out/"; //game assets location
|
public static String outpath = System.getProperty("user.home") + "/.firestar/out/"; //game assets location
|
||||||
public final static String inpath = System.getProperty("user.home") + "/.firestar/"; //firestar folder -- do not change this
|
public final static String inpath = System.getProperty("user.home") + "/.firestar/"; //firestar folder -- do not change this
|
||||||
public static boolean repatch; //are we in compat mode?
|
public static boolean repatch; //are we in compat mode?
|
||||||
|
@ -78,7 +76,6 @@ public class Main {
|
||||||
public class Mod {
|
public class Mod {
|
||||||
public String path; // file name
|
public String path; // file name
|
||||||
public int version = 1;
|
public int version = 1;
|
||||||
//public int gameversion; //TODO detect a game version and compatibility? // no
|
|
||||||
public int priority = 0; //unused
|
public int priority = 0; //unused
|
||||||
public String friendlyName;
|
public String friendlyName;
|
||||||
public String description = "";
|
public String description = "";
|
||||||
|
|
|
@ -193,7 +193,6 @@ public class MissPiggy implements ActionListener {
|
||||||
Main.Mods.clear();
|
Main.Mods.clear();
|
||||||
|
|
||||||
// get current list of mods from file
|
// get current list of mods from file
|
||||||
// todo: rewrite when modpacks/playlists are added
|
|
||||||
try {
|
try {
|
||||||
priorityList = new String(Files.readAllBytes(Paths.get(System.getProperty("user.home") + "/.firestar/mods/index")));
|
priorityList = new String(Files.readAllBytes(Paths.get(System.getProperty("user.home") + "/.firestar/mods/index")));
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user