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-11-09 08:59:15 +01:00
|
|
|
index cae3c20eba546dcf42d035e9a5998302df350d4b..7ef0c9c8edf1202d0e20a505b18f9d36bdc20139 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-11-09 08:59:15 +01:00
|
|
|
@@ -691,12 +691,7 @@ public abstract class MinecraftServer extends ReentrantBlockableEventLoop<TickTa
|
2021-06-13 16:14:18 +02:00
|
|
|
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-11-09 08:59:15 +01:00
|
|
|
@@ -712,6 +707,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");
|