2019-06-14 04:27:40 +02:00
|
|
|
From 20d1bce64066eaf1ebf9f057a9bd8362f1dea167 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
|
2019-06-06 17:36:57 +02:00
|
|
|
index 2782970393..be91b11242 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
|
2019-06-06 17:36:57 +02:00
|
|
|
index 30bc933c21..96cf4bccea 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
|
|
|
}
|
2018-07-15 03:53:17 +02: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
|
2018-07-15 03:53:17 +02:00
|
|
|
|
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
|
|
|
--
|
2019-04-05 06:52:02 +02:00
|
|
|
2.21.0
|
2016-03-01 00:09:49 +01:00
|
|
|
|