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

38 lines
1.7 KiB
Diff
Raw Normal View History

From 96963b668d65bac53132de642fa2e1b3c1b5c967 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
2016-11-17 03:23:38 +01:00
index 97265b9..b2c45c8 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
2016-11-17 03:23:38 +01:00
@@ -235,4 +235,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
2016-11-17 03:23:38 +01:00
index 91ed719..950f07d 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
2016-11-17 03:23:38 +01:00
@@ -252,7 +252,8 @@ public class EntitySlime extends EntityInsentient implements IMonster {
return super.cM();
2016-03-01 00:09:49 +01:00
}
- if (this.random.nextInt(10) == 0 && chunk.a(987234911L).nextInt(10) == 0 && this.locY < 40.0D) {
2016-05-12 04:07:46 +02:00
+ boolean isSlimeChunk = world.paperConfig.allChunksAreSlimeChunks || chunk.a(987234911L).nextInt(10) == 0; // Paper
2016-06-09 05:57:14 +02:00
+ if (this.random.nextInt(10) == 0 && isSlimeChunk && this.locY < 40.0D) {
2016-11-17 03:23:38 +01:00
return super.cM();
2016-03-01 00:09:49 +01:00
}
}
--
2.9.3
2016-03-01 00:09:49 +01:00