aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/unapplied/server/0047-Configurable-mob-spawner-tick-rate.patch
diff options
context:
space:
mode:
Diffstat (limited to 'patches/unapplied/server/0047-Configurable-mob-spawner-tick-rate.patch')
-rw-r--r--patches/unapplied/server/0047-Configurable-mob-spawner-tick-rate.patch39
1 files changed, 39 insertions, 0 deletions
diff --git a/patches/unapplied/server/0047-Configurable-mob-spawner-tick-rate.patch b/patches/unapplied/server/0047-Configurable-mob-spawner-tick-rate.patch
new file mode 100644
index 0000000000..a3dc9ff7d3
--- /dev/null
+++ b/patches/unapplied/server/0047-Configurable-mob-spawner-tick-rate.patch
@@ -0,0 +1,39 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Sudzzy <[email protected]>
+Date: Wed, 2 Mar 2016 15:03:53 -0600
+Subject: [PATCH] Configurable mob spawner tick rate
+
+
+diff --git a/src/main/java/net/minecraft/world/level/BaseSpawner.java b/src/main/java/net/minecraft/world/level/BaseSpawner.java
+index 366661561544f8e99f238583259991e9fcbab8af..7b918001d36a8f14ed0d3ee4d6783588f48eb78f 100644
+--- a/src/main/java/net/minecraft/world/level/BaseSpawner.java
++++ b/src/main/java/net/minecraft/world/level/BaseSpawner.java
+@@ -49,6 +49,7 @@ public abstract class BaseSpawner {
+ public int maxNearbyEntities = 6;
+ public int requiredPlayerRange = 16;
+ public int spawnRange = 4;
++ private int tickDelay = 0; // Paper - Configurable mob spawner tick rate
+
+ public BaseSpawner() {}
+
+@@ -83,13 +84,18 @@ public abstract class BaseSpawner {
+ }
+
+ public void serverTick(ServerLevel world, BlockPos pos) {
++ // Paper start - Configurable mob spawner tick rate
++ if (spawnDelay > 0 && --tickDelay > 0) return;
++ tickDelay = world.paperConfig().tickRates.mobSpawner;
++ if (tickDelay == -1) { return; } // If disabled
++ // Paper end - Configurable mob spawner tick rate
+ if (this.isNearPlayer(world, pos)) {
+- if (this.spawnDelay == -1) {
++ if (this.spawnDelay < -tickDelay) { // Paper - Configurable mob spawner tick rate
+ this.delay(world, pos);
+ }
+
+ if (this.spawnDelay > 0) {
+- --this.spawnDelay;
++ this.spawnDelay -= tickDelay; // Paper - Configurable mob spawner tick rate
+ } else {
+ boolean flag = false;
+ RandomSource randomsource = world.getRandom();