2021-06-12 02:57:04 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Sudzzy <originmc@outlook.com>
|
|
|
|
Date: Wed, 2 Mar 2016 15:03:53 -0600
|
|
|
|
Subject: [PATCH] Configurable mob spawner tick rate
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2021-11-24 18:58:26 +01:00
|
|
|
index ceb1602afb90fc0a23d6cc8d22fc85fab3b8da14..e7b7f0a1a35f782a0da4627b4f02e673ca73693e 100644
|
2021-06-12 02:57:04 +02:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2021-11-24 18:58:26 +01:00
|
|
|
@@ -222,4 +222,9 @@ public class PaperWorldConfig {
|
2021-06-12 02:57:04 +02:00
|
|
|
private void disableIceAndSnow(){
|
|
|
|
disableIceAndSnow = getBoolean("disable-ice-and-snow", false);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public int mobSpawnerTickRate;
|
|
|
|
+ private void mobSpawnerTickRate() {
|
|
|
|
+ mobSpawnerTickRate = getInt("mob-spawner-tick-rate", 1);
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/BaseSpawner.java b/src/main/java/net/minecraft/world/level/BaseSpawner.java
|
2022-03-01 04:25:13 +01:00
|
|
|
index 31bfc0c491c9a4cc6782b6c284121f96972517ea..6aab3df317a9612da9b83284aa6056f0c7cf436c 100644
|
2021-06-12 02:57:04 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/BaseSpawner.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/BaseSpawner.java
|
2021-11-23 13:15:10 +01:00
|
|
|
@@ -42,6 +42,7 @@ public abstract class BaseSpawner {
|
|
|
|
public int requiredPlayerRange = 16;
|
|
|
|
public int spawnRange = 4;
|
|
|
|
private final Random random = new Random();
|
2021-06-12 02:57:04 +02:00
|
|
|
+ private int tickDelay = 0; // Paper
|
|
|
|
|
2021-11-23 13:15:10 +01:00
|
|
|
public BaseSpawner() {}
|
|
|
|
|
|
|
|
@@ -75,13 +76,18 @@ public abstract class BaseSpawner {
|
2021-06-12 02:57:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void serverTick(ServerLevel world, BlockPos pos) {
|
|
|
|
+ // Paper start - Configurable mob spawner tick rate
|
|
|
|
+ if (spawnDelay > 0 && --tickDelay > 0) return;
|
|
|
|
+ tickDelay = world.paperConfig.mobSpawnerTickRate;
|
2021-10-31 08:51:57 +01:00
|
|
|
+ if (tickDelay == -1) { return; } // If disabled
|
2021-06-12 02:57:04 +02:00
|
|
|
+ // Paper end
|
|
|
|
if (this.isNearPlayer(world, pos)) {
|
|
|
|
- if (this.spawnDelay == -1) {
|
|
|
|
+ if (this.spawnDelay < -tickDelay) {
|
|
|
|
this.delay(world, pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.spawnDelay > 0) {
|
|
|
|
- --this.spawnDelay;
|
|
|
|
+ this.spawnDelay -= tickDelay; // Paper
|
|
|
|
} else {
|
|
|
|
boolean flag = false;
|
|
|
|
|
2021-11-23 13:15:10 +01:00
|
|
|
@@ -146,8 +152,7 @@ public abstract class BaseSpawner {
|
2021-06-12 02:57:04 +02:00
|
|
|
((Mob) entity).finalizeSpawn(world, world.getCurrentDifficultyAt(entity.blockPosition()), MobSpawnType.SPAWNER, (SpawnGroupData) null, (CompoundTag) null);
|
|
|
|
}
|
|
|
|
// Spigot Start
|
|
|
|
- if ( entityinsentient.level.spigotConfig.nerfSpawnerMobs )
|
|
|
|
- {
|
|
|
|
+ if (entityinsentient.level.spigotConfig.nerfSpawnerMobs) {
|
|
|
|
entityinsentient.aware = false;
|
|
|
|
}
|
|
|
|
// Spigot End
|