We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d59f49d + 0d596f5 commit abb5eafCopy full SHA for abb5eaf
src/main/java/org/runejs/Configuration.java
@@ -57,14 +57,15 @@ public static void read() {
57
}
58
59
} catch (Exception e) {
60
+ e.printStackTrace();
61
System.out.println("Unable to load client config - using defaults.");
62
Map<String, Object> net = new HashMap<String, Object>();
63
64
net.put("address", SERVER_ADDRESS);
65
net.put("game_port", GAME_PORT);
66
67
Map<String, Object> cache = new HashMap<String, Object>();
- cache.put("cacheDir", GAME_PORT);
68
+ cache.put("cacheDir", CACHE_NAME);
69
70
Map<String, Object> rsa = new HashMap<String, Object>();
71
rsa.put("rsaPub", RSA_PUBLIC_KEY);
0 commit comments