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 9afdf36 commit 148cda6Copy full SHA for 148cda6
src/main/java/lol/hyper/anarchystats/AnarchyStats.java
@@ -41,7 +41,7 @@
41
42
public final class AnarchyStats extends JavaPlugin {
43
44
- public static String worldSize;
+ public String worldSize;
45
public final File configFile = new File(this.getDataFolder(), "config.yml");
46
public final Logger logger = this.getLogger();
47
public final ArrayList<Path> worldPaths = new ArrayList<>();
src/main/java/lol/hyper/anarchystats/tools/MessageParser.java
@@ -86,7 +86,7 @@ public Component infoCommand() {
86
}
87
88
if (line.contains("{{WORLDSIZE}}")) {
89
- line = line.replace("{{WORLDSIZE}}", AnarchyStats.worldSize);
+ line = line.replace("{{WORLDSIZE}}", anarchyStats.worldSize);
90
91
92
if (line.contains("{{TOTALJOINS}}")) {
0 commit comments