remove todos

This commit is contained in:
Downforce Agent 2024-07-13 16:25:30 -05:00
parent 2fcf7612a6
commit f209f5f37a
2 changed files with 0 additions and 4 deletions

View File

@ -35,8 +35,6 @@ public class Main {
public static final int vint = 1;
// 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 final static String inpath = System.getProperty("user.home") + "/.firestar/"; //firestar folder -- do not change this
public static boolean repatch; //are we in compat mode?
@ -78,7 +76,6 @@ public class Main {
public class Mod {
public String path; // file name
public int version = 1;
//public int gameversion; //TODO detect a game version and compatibility? // no
public int priority = 0; //unused
public String friendlyName;
public String description = "";

View File

@ -193,7 +193,6 @@ public class MissPiggy implements ActionListener {
Main.Mods.clear();
// get current list of mods from file
// todo: rewrite when modpacks/playlists are added
try {
priorityList = new String(Files.readAllBytes(Paths.get(System.getProperty("user.home") + "/.firestar/mods/index")));
} catch (IOException e) {