Change default config file location
The configuration file location in the Config constructor was changed. The previous default was under the user's home directory, now it has been moved to the "/mnt/configs/LiteFlags" directory.
This commit is contained in:
@@ -10,7 +10,7 @@ public final class Config extends AbstractConfig {
|
||||
static Config config;
|
||||
static int version;
|
||||
public Config() {
|
||||
super(new File(System.getProperty("user.home") + File.separator + "share" + File.separator + "configs" + File.separator + "LiteFlags"), "config.yml");
|
||||
super(new File(File.separator + "mnt" + File.separator + "configs" + File.separator + "LiteFlags"), "config.yml");
|
||||
}
|
||||
|
||||
public static void reload() {
|
||||
|
||||
Reference in New Issue
Block a user