mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-30 19:40:37 +01:00
Skip distance map update when spawning is disabled
This commit is contained in:
parent
a797fca1b9
commit
0ce0eaf3eb
1 changed files with 19 additions and 0 deletions
|
@ -0,0 +1,19 @@
|
||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Beech Horn <beechhorn@gmail.com>
|
||||||
|
Date: Fri, 14 Feb 2020 19:39:59 +0000
|
||||||
|
Subject: [PATCH] Skip distance map update when spawning disabled.
|
||||||
|
|
||||||
|
|
||||||
|
diff --git a/src/main/java/net/minecraft/server/ChunkProviderServer.java b/src/main/java/net/minecraft/server/ChunkProviderServer.java
|
||||||
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||||
|
--- a/src/main/java/net/minecraft/server/ChunkProviderServer.java
|
||||||
|
+++ b/src/main/java/net/minecraft/server/ChunkProviderServer.java
|
||||||
|
@@ -0,0 +0,0 @@ public class ChunkProviderServer extends IChunkProvider {
|
||||||
|
int l = this.chunkMapDistance.b();
|
||||||
|
// Paper start - per player mob spawning
|
||||||
|
SpawnerCreature.d spawnercreature_d; // moved down
|
||||||
|
- if (this.playerChunkMap.playerMobDistanceMap != null) {
|
||||||
|
+ if ((this.allowAnimals || this.allowMonsters) && this.playerChunkMap.playerMobDistanceMap != null) { // don't update when animals and monsters are disabled
|
||||||
|
// update distance map
|
||||||
|
this.world.timings.playerMobDistanceMapUpdate.startTiming();
|
||||||
|
this.playerChunkMap.playerMobDistanceMap.update(this.world.players, this.playerChunkMap.viewDistance);
|
Loading…
Add table
Reference in a new issue