mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-03 17:52:28 +01:00
Added world seed display to 'Preparing level' log message for each world
By: EvilSeph <evilseph@unaligned.org>
This commit is contained in:
parent
4a33e32be6
commit
cd27191ee2
1 changed files with 3 additions and 2 deletions
|
@ -95,10 +95,10 @@ public final class CraftServer implements Server {
|
|||
configuration.getString("database.password", "walrus");
|
||||
configuration.getString("database.driver", "org.sqlite.JDBC");
|
||||
configuration.getString("database.isolation", "SERIALIZABLE");
|
||||
|
||||
|
||||
configuration.getString("settings.update-folder", "update");
|
||||
configuration.getInt("settings.spawn-radius", 16);
|
||||
|
||||
|
||||
if (configuration.getNode("aliases") == null) {
|
||||
configuration.setProperty("aliases.icanhasbukkit", "version");
|
||||
}
|
||||
|
@ -401,6 +401,7 @@ public final class CraftServer implements Server {
|
|||
}
|
||||
|
||||
pluginManager.callEvent(new WorldInitEvent(internal.getWorld()));
|
||||
System.out.print("Preparing start region for level " + (console.worlds.size() -1) + " (Seed: " + internal.getSeed() + ")");
|
||||
|
||||
short short1 = 196;
|
||||
long i = System.currentTimeMillis();
|
||||
|
|
Loading…
Reference in a new issue