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.
1 parent 0391de7 commit 5abf9f0Copy full SHA for 5abf9f0
src/main/java/lol/hyper/anarchystats/AnarchyStats.java
@@ -72,7 +72,7 @@ public void loadConfig() {
72
for (String x : config.getStringList("worlds-to-use")) {
73
Path currentPath = Paths.get(Paths.get(".").toAbsolutePath().normalize().toString() + File.separator + x);
74
if (!currentPath.toFile().exists()) {
75
- logger.warning("World file " + x + " does not exist!");
+ logger.warning("World folder \"" + x + "\" does not exist! Excluding from size calculation.");
76
} else {
77
worldPaths.add(currentPath);
78
}
0 commit comments