2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Wed, 12 Sep 2018 21:12:57 -0400
|
|
|
|
Subject: [PATCH] Prevent mob spawning from loading/generating chunks
|
|
|
|
|
|
|
|
also prevents if out of world border bounds
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/NaturalSpawner.java b/src/main/java/net/minecraft/world/level/NaturalSpawner.java
|
2021-06-14 07:38:49 +02:00
|
|
|
index cf6bcbe7d75a52fe509e3b6c6c24b64bf9d460ad..6204bf41d410df9784b32f993b46d7adb2af5f13 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/NaturalSpawner.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/NaturalSpawner.java
|
2021-06-13 06:03:02 +02:00
|
|
|
@@ -188,9 +188,9 @@ public final class NaturalSpawner {
|
2021-06-11 14:02:28 +02:00
|
|
|
StructureFeatureManager structuremanager = world.structureFeatureManager();
|
|
|
|
ChunkGenerator chunkgenerator = world.getChunkSource().getGenerator();
|
|
|
|
int i = pos.getY();
|
|
|
|
- BlockState iblockdata = chunk.getBlockState(pos);
|
|
|
|
+ BlockState iblockdata = world.getTypeIfLoadedAndInBounds(pos); // Paper - don't load chunks for mob spawn
|
|
|
|
|
|
|
|
- if (!iblockdata.isRedstoneConductor(chunk, pos)) {
|
|
|
|
+ if (iblockdata != null && !iblockdata.isRedstoneConductor(chunk, pos)) { // Paper - don't load chunks for mob spawn
|
|
|
|
BlockPos.MutableBlockPos blockposition_mutableblockposition = new BlockPos.MutableBlockPos();
|
|
|
|
int j = 0;
|
|
|
|
int k = 0;
|
2021-06-13 06:03:02 +02:00
|
|
|
@@ -219,7 +219,7 @@ public final class NaturalSpawner {
|
2021-06-11 14:02:28 +02:00
|
|
|
if (entityhuman != null) {
|
|
|
|
double d2 = entityhuman.distanceToSqr(d0, (double) i, d1);
|
|
|
|
|
2021-06-13 06:03:02 +02:00
|
|
|
- if (NaturalSpawner.isRightDistanceToPlayerAndSpawnPoint(world, chunk, blockposition_mutableblockposition, d2)) {
|
|
|
|
+ if (world.isLoadedAndInBounds(blockposition_mutableblockposition) && NaturalSpawner.isRightDistanceToPlayerAndSpawnPoint(world, chunk, blockposition_mutableblockposition, d2)) { // Paper - don't load chunks for mob spawn
|
2021-06-11 14:02:28 +02:00
|
|
|
if (biomesettingsmobs_c == null) {
|
2021-06-13 06:03:02 +02:00
|
|
|
Optional<MobSpawnSettings.SpawnerData> optional = NaturalSpawner.getRandomSpawnMobAt(world, structuremanager, chunkgenerator, group, world.random, (BlockPos) blockposition_mutableblockposition);
|
|
|
|
|