Skip to content

Commit cf84637

Browse files
committed
Reword saving-worlds info a bit
1 parent c8fc11f commit cf84637

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

implementations/paper/src/main/java/de/bluecolored/bluemap/bukkit/BukkitPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public void onEnable() {
9797

9898
//save world so the level.dat is present on new worlds
9999
if (!FoliaSupport.IS_FOLIA) {
100-
Logger.global.logInfo("Saving all worlds once, to make sure the level.dat is present...");
100+
Logger.global.logInfo("Saving all worlds once, to make sure all required world-properties are present...");
101101
for (World world : getServer().getWorlds()) {
102102
world.save();
103103
}

implementations/spigot/src/main/java/de/bluecolored/bluemap/bukkit/BukkitPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public BukkitPlugin() {
119119
public void onEnable() {
120120

121121
//save world so the level.dat is present on new worlds
122-
Logger.global.logInfo("Saving all worlds once, to make sure the level.dat is present...");
122+
Logger.global.logInfo("Saving all worlds once, to make sure all required world-properties are present...");
123123
for (World world : getServer().getWorlds()) {
124124
world.save();
125125
}

0 commit comments

Comments
 (0)