Check home directory for Minecraft files on Linux

This commit is contained in:
programmerpony 2020-05-31 12:50:35 -04:00
parent f8758d2933
commit ab3578b84d

View File

@ -165,6 +165,6 @@ public class ResourceGatherer {
return new File(user + "/Library/Application Support/minecraft");
}
return new File("~/.minecraft");
return new File(System.getProperty("user.home") + "/.minecraft");
}
}