made an offline download snapshot

This commit is contained in:
LAX1DUDE 2022-07-31 12:14:56 -07:00
parent 722166ee9f
commit ddacbb3f50
5 changed files with 48749 additions and 14624 deletions
javascript
src
main/java/net/lax1dude/eaglercraft
teavm/java/net/lax1dude/eaglercraft

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -6,7 +6,7 @@ public class ConfigConstants {
public static boolean profanity = false;
public static final String version = "22w30a";
public static final String version = "SP-SNAPSHOT-01";
public static final String mainMenuString = "eaglercraft " + version;
public static final String forkMe = "https://github.com/LAX1DUDE/eaglercraft";

@ -54,6 +54,10 @@ public class Client {
EaglerAdapterImpl2.setServerToJoinOnLaunch(conf.optString("joinServer", null));
String assetsURI = conf.getString("assetsURI");
if(assetsURI.length() > 256) {
conf.put("assetsURI", assetsURI.substring(0, 256) + " ... ");
crashScreenOptsDump = "window.eaglercraftOpts = " + conf.toString();
}
String serverWorkerURI = conf.getString("serverWorkerURI");
EaglerAdapterImpl2.setWorldDatabaseName(conf.optString("worldsFolder", "MAIN"));