2021-06-11 14:02:28 +02: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-06-17 21:12:40 +02:00
|
|
|
index 29c1b3a43dd369419e8c93b571679a2ba024e4f6..38b92db7591c060a45c4bf8bb7e4a25bb649a742 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/MinecraftServer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/MinecraftServer.java
|
2021-06-13 16:14:18 +02:00
|
|
|
@@ -678,12 +678,7 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
|
|
|
worldProperties.setSpawn(BlockPos.ZERO.above(80), 0.0F);
|
2021-06-11 14:02:28 +02:00
|
|
|
} else {
|
2021-06-13 16:14:18 +02:00
|
|
|
ChunkGenerator chunkgenerator = world.getChunkSource().getGenerator();
|
2021-06-11 14:02:28 +02:00
|
|
|
- BiomeSource worldchunkmanager = chunkgenerator.getBiomeSource();
|
|
|
|
- Random random = new Random(world.getSeed());
|
|
|
|
- BlockPos blockposition = worldchunkmanager.findBiomeHorizontal(0, world.getSeaLevel(), 0, 256, (biomebase) -> {
|
|
|
|
- return biomebase.getMobSettings().playerSpawnFriendly();
|
|
|
|
- }, random);
|
|
|
|
- ChunkPos chunkcoordintpair = blockposition == null ? new ChunkPos(0, 0) : new ChunkPos(blockposition);
|
|
|
|
+ // Paper start - moved down
|
|
|
|
// CraftBukkit start
|
|
|
|
if (world.generator != null) {
|
|
|
|
Random rand = new Random(world.getSeed());
|
2021-06-13 16:14:18 +02:00
|
|
|
@@ -699,6 +694,15 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
2021-06-11 14:02:28 +02: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
|
|
|
|
+ BiomeSource worldchunkmanager = chunkgenerator.getBiomeSource();
|
|
|
|
+ Random random = new Random(world.getSeed());
|
|
|
|
+ BlockPos blockposition = worldchunkmanager.findBiomeHorizontal(0, world.getSeaLevel(), 0, 256, (biomebase) -> {
|
|
|
|
+ return biomebase.getMobSettings().playerSpawnFriendly();
|
|
|
|
+ }, random);
|
|
|
|
+ ChunkPos chunkcoordintpair = blockposition == null ? new ChunkPos(0, 0) : new ChunkPos(blockposition);
|
|
|
|
+ // Paper end
|
|
|
|
|
|
|
|
if (blockposition == null) {
|
|
|
|
MinecraftServer.LOGGER.warn("Unable to find spawn biome");
|