2020-06-25 23:38:24 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Paul Sauve <paul@burngames.net>
|
|
|
|
Date: Sun, 14 Jul 2019 21:05:03 -0500
|
|
|
|
Subject: [PATCH] Do less work if we have a custom Bukkit generator
|
|
|
|
|
|
|
|
If the Bukkit generator already has a spawn, use it immediately instead
|
|
|
|
of spending time generating one that we won't use
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/MinecraftServer.java b/src/main/java/net/minecraft/server/MinecraftServer.java
|
2021-03-16 07:19:45 +00:00
|
|
|
index eafee14262ac8abb482bdd0fa52a8a33bf4a0f87..ede36b4c4d806bee62fd46d2e1ba595c9cd515ce 100644
|
2020-06-25 23:38:24 +00:00
|
|
|
--- a/src/main/java/net/minecraft/server/MinecraftServer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/MinecraftServer.java
|
2021-03-16 07:19:45 +00:00
|
|
|
@@ -618,12 +618,7 @@ public abstract class MinecraftServer extends IAsyncTaskHandlerReentrant<TickTas
|
2020-06-25 23:38:24 +00:00
|
|
|
} else if (flag1) {
|
2020-08-25 02:22:08 +00:00
|
|
|
iworlddataserver.setSpawn(BlockPosition.ZERO.up(), 0.0F);
|
2020-06-25 23:38:24 +00:00
|
|
|
} else {
|
|
|
|
- WorldChunkManager worldchunkmanager = chunkgenerator.getWorldChunkManager();
|
|
|
|
- Random random = new Random(worldserver.getSeed());
|
2020-08-25 02:22:08 +00:00
|
|
|
- BlockPosition blockposition = worldchunkmanager.a(0, worldserver.getSeaLevel(), 0, 256, (biomebase) -> {
|
|
|
|
- return biomebase.b().b();
|
|
|
|
- }, random);
|
2020-06-25 23:38:24 +00:00
|
|
|
- ChunkCoordIntPair chunkcoordintpair = blockposition == null ? new ChunkCoordIntPair(0, 0) : new ChunkCoordIntPair(blockposition);
|
|
|
|
+ // Paper start - moved down
|
|
|
|
// CraftBukkit start
|
|
|
|
if (worldserver.generator != null) {
|
|
|
|
Random rand = new Random(worldserver.getSeed());
|
2021-03-16 07:19:45 +00:00
|
|
|
@@ -639,6 +634,15 @@ public abstract class MinecraftServer extends IAsyncTaskHandlerReentrant<TickTas
|
2020-06-25 23:38:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// CraftBukkit end
|
|
|
|
+ // Paper start - if the generator created a spawn for us, then there is no need for us to also create a spawn -
|
|
|
|
+ // only do it if the generator did not
|
|
|
|
+ WorldChunkManager worldchunkmanager = chunkgenerator.getWorldChunkManager();
|
|
|
|
+ Random random = new Random(worldserver.getSeed());
|
2020-08-25 02:22:08 +00:00
|
|
|
+ BlockPosition blockposition = worldchunkmanager.a(0, worldserver.getSeaLevel(), 0, 256, (biomebase) -> {
|
|
|
|
+ return biomebase.b().b();
|
|
|
|
+ }, random);
|
2020-06-25 23:38:24 +00:00
|
|
|
+ ChunkCoordIntPair chunkcoordintpair = blockposition == null ? new ChunkCoordIntPair(0, 0) : new ChunkCoordIntPair(blockposition);
|
|
|
|
+ // Paper end
|
|
|
|
|
|
|
|
if (blockposition == null) {
|
|
|
|
MinecraftServer.LOGGER.warn("Unable to find spawn biome");
|