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:
parent
ed99d1c83c
commit
e4ca6d986f
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user