geforkt von Mirrors/Paper
37 Zeilen
1.9 KiB
Diff
37 Zeilen
1.9 KiB
Diff
|
From 3755330b8b9222b50364f326b08619837d0865d2 Mon Sep 17 00:00:00 2001
|
||
|
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
|
||
|
index 89a00ff8d..3fab45aa9 100644
|
||
|
--- a/src/main/java/net/minecraft/server/PlayerChunkMap.java
|
||
|
+++ b/src/main/java/net/minecraft/server/PlayerChunkMap.java
|
||
|
@@ -735,11 +735,16 @@ public class PlayerChunkMap extends IChunkLoader implements PlayerChunk.d {
|
||
|
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
|
||
|
|
||
|
return this.y.a(chunkcoordintpair.pair()).noneMatch((entityplayer) -> {
|
||
|
+ // Paper start -
|
||
|
+ com.destroystokyo.paper.event.entity.PlayerNaturallySpawnCreaturesEvent event // TODO deal with int->byte on review (as well as the mess that this code is)
|
||
|
+ = new com.destroystokyo.paper.event.entity.PlayerNaturallySpawnCreaturesEvent(entityplayer.getBukkitEntity(), (byte)finalChunkRange);
|
||
|
+ final double blockRange = (double)((event.getSpawnRadius() << 4) * (event.getSpawnRadius() << 4));
|
||
|
+ // Paper end
|
||
|
return !entityplayer.isSpectator() && a(chunkcoordintpair, (Entity) entityplayer) < blockRange; // Spigot
|
||
|
});
|
||
|
}
|
||
|
--
|
||
|
2.21.0
|
||
|
|