2019-05-14 04:20:58 +02:00
|
|
|
From 81395ec21ce58c65cc12709e50127c67098e5ee9 Mon Sep 17 00:00:00 2001
|
2019-04-28 19:59:47 +02:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Sun, 14 Jan 2018 17:36:02 -0500
|
|
|
|
Subject: [PATCH] PlayerNaturallySpawnCreaturesEvent
|
|
|
|
|
|
|
|
This event can be used for when you want to exclude a certain player
|
|
|
|
from triggering monster spawns on a server.
|
|
|
|
|
|
|
|
Also a highly more effecient way to blanket block spawns in a world
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/PlayerChunkMap.java b/src/main/java/net/minecraft/server/PlayerChunkMap.java
|
2019-05-14 04:20:58 +02:00
|
|
|
index a93117667..ae04198c9 100644
|
2019-04-28 19:59:47 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/PlayerChunkMap.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PlayerChunkMap.java
|
2019-05-14 04:20:58 +02:00
|
|
|
@@ -712,12 +712,17 @@ public class PlayerChunkMap extends IChunkLoader implements PlayerChunk.d {
|
2019-04-28 19:59:47 +02:00
|
|
|
int chunkRange = world.spigotConfig.mobSpawnRange;
|
|
|
|
chunkRange = (chunkRange > world.spigotConfig.viewDistance) ? (byte) world.spigotConfig.viewDistance : chunkRange;
|
|
|
|
chunkRange = (chunkRange > 8) ? 8 : chunkRange;
|
|
|
|
-
|
|
|
|
- double blockRange = Math.pow(chunkRange << 4, 2);
|
|
|
|
+ final int finalChunkRange = chunkRange; // Paper for lambda below
|
|
|
|
+ //double blockRange = Math.pow(chunkRange << 4, 2); // Paper - use the range from the event
|
|
|
|
// Spigot end
|
|
|
|
|
2019-05-14 04:20:58 +02:00
|
|
|
return this.playerMap.a(chunkcoordintpair.pair()).noneMatch((entityplayer) -> {
|
2019-05-13 00:34:42 +02:00
|
|
|
- return !entityplayer.isSpectator() && a(chunkcoordintpair, (Entity) entityplayer) < blockRange; // Spigot
|
2019-04-28 19:59:47 +02:00
|
|
|
+ // Paper start -
|
2019-05-13 00:34:42 +02:00
|
|
|
+ com.destroystokyo.paper.event.entity.PlayerNaturallySpawnCreaturesEvent event
|
2019-04-28 19:59:47 +02:00
|
|
|
+ = new com.destroystokyo.paper.event.entity.PlayerNaturallySpawnCreaturesEvent(entityplayer.getBukkitEntity(), (byte)finalChunkRange);
|
|
|
|
+ final double blockRange = (double)((event.getSpawnRadius() << 4) * (event.getSpawnRadius() << 4));
|
2019-05-13 00:34:42 +02:00
|
|
|
+ return event.isCancelled() || (!entityplayer.isSpectator() && a(chunkcoordintpair, (Entity) entityplayer) < blockRange); // Spigot
|
2019-04-28 19:59:47 +02:00
|
|
|
+ // Paper end
|
|
|
|
});
|
|
|
|
}
|
2019-05-13 00:34:42 +02:00
|
|
|
|
2019-04-28 19:59:47 +02:00
|
|
|
--
|
|
|
|
2.21.0
|
|
|
|
|