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 6069117 + 271f451 commit bbeeb4bCopy full SHA for bbeeb4b
BlueMapBukkit/src/main/java/de/bluecolored/bluemap/bukkit/BukkitPlugin.java
@@ -39,6 +39,11 @@ public BukkitPlugin() {
39
public void onEnable() {
40
new MetricsLite(this);
41
42
+ //save world so the level.dat is present on new worlds
43
+ for (World world : getServer().getWorlds()) {
44
+ world.save();
45
+ }
46
+
47
getServer().getPluginManager().registerEvents(eventForwarder, this);
48
getCommand("bluemap").setExecutor(commands);
49
0 commit comments