Paper/Spigot-Server-Patches/0045-All-chunks-are-slime-spawn-chunks-toggle.patch

37 lines
1.9 KiB
Diff
Raw Normal View History

From 2896f18be8082df36920c4478f6d070cd1e3a9bc Mon Sep 17 00:00:00 2001
2016-03-01 00:09:49 +01:00
From: vemacs <d@nkmem.es>
Date: Thu, 3 Mar 2016 01:19:22 -0600
Subject: [PATCH] All chunks are slime spawn chunks toggle
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
index 278297039..be91b1124 100644
2016-03-01 00:09:49 +01:00
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
2019-04-25 08:53:51 +02:00
@@ -181,4 +181,9 @@ public class PaperWorldConfig {
2016-03-01 00:09:49 +01:00
private void disableChestCatDetection() {
disableChestCatDetection = getBoolean("game-mechanics.disable-chest-cat-detection", false);
}
+
+ public boolean allChunksAreSlimeChunks;
+ private void allChunksAreSlimeChunks() {
+ allChunksAreSlimeChunks = getBoolean("all-chunks-are-slime-chunks", false);
+ }
}
diff --git a/src/main/java/net/minecraft/server/EntitySlime.java b/src/main/java/net/minecraft/server/EntitySlime.java
index 30bc933c2..96cf4bcce 100644
2016-03-01 00:09:49 +01:00
--- a/src/main/java/net/minecraft/server/EntitySlime.java
+++ b/src/main/java/net/minecraft/server/EntitySlime.java
2019-04-25 08:53:51 +02:00
@@ -276,7 +276,7 @@ public class EntitySlime extends EntityInsentient implements IMonster {
2016-03-01 00:09:49 +01:00
}
ChunkCoordIntPair chunkcoordintpair = new ChunkCoordIntPair(blockposition);
2019-04-25 08:53:51 +02:00
- boolean flag = SeededRandom.a(chunkcoordintpair.x, chunkcoordintpair.z, generatoraccess.getSeed(), world.spigotConfig.slimeSeed).nextInt(10) == 0; // Spigot
+ boolean flag = world.paperConfig.allChunksAreSlimeChunks || SeededRandom.a(chunkcoordintpair.x, chunkcoordintpair.z, generatoraccess.getSeed(), world.spigotConfig.slimeSeed).nextInt(10) == 0; // Spigot // Paper
2019-04-25 08:53:51 +02:00
if (this.random.nextInt(10) == 0 && flag && this.locY < 40.0D) {
return super.a(generatoraccess, enummobspawn);
2016-03-01 00:09:49 +01:00
--
2.21.0
2016-03-01 00:09:49 +01:00