made an offline download snapshot
This commit is contained in:
parent
722166ee9f
commit
ddacbb3f50
34118
javascript/Singleplayer_Test.html
Normal file
34118
javascript/Singleplayer_Test.html
Normal file
File diff suppressed because one or more lines are too long
29247
javascript/classes.js
29247
javascript/classes.js
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"));
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user