2018-09-01 00:56:57 +02:00
|
|
|
From 96a39a206b1aa7c7e2352d77ddde5cac303fc270 Mon Sep 17 00:00:00 2001
|
2016-03-01 00:09:49 +01:00
|
|
|
From: Suddenly <suddenly@suddenly.coffee>
|
|
|
|
Date: Tue, 1 Mar 2016 13:51:54 -0600
|
|
|
|
Subject: [PATCH] Add configurable despawn distances for living entities
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2018-09-01 00:56:57 +02:00
|
|
|
index 341038fc4d..3e1f4be10f 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
|
2018-07-24 02:24:44 +02:00
|
|
|
@@ -92,4 +92,20 @@ public class PaperWorldConfig {
|
2016-11-17 03:23:38 +01:00
|
|
|
private void nerfedMobsShouldJump() {
|
|
|
|
nerfedMobsShouldJump = getBoolean("spawner-nerfed-mobs-should-jump", false);
|
2016-03-01 00:09:49 +01:00
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public int softDespawnDistance;
|
|
|
|
+ public int hardDespawnDistance;
|
|
|
|
+ private void despawnDistances() {
|
|
|
|
+ softDespawnDistance = getInt("despawn-ranges.soft", 32); // 32^2 = 1024, Minecraft Default
|
|
|
|
+ hardDespawnDistance = getInt("despawn-ranges.hard", 128); // 128^2 = 16384, Minecraft Default
|
|
|
|
+
|
|
|
|
+ if (softDespawnDistance > hardDespawnDistance) {
|
|
|
|
+ softDespawnDistance = hardDespawnDistance;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ log("Living Entity Despawn Ranges: Soft: " + softDespawnDistance + " Hard: " + hardDespawnDistance);
|
|
|
|
+
|
|
|
|
+ softDespawnDistance = softDespawnDistance*softDespawnDistance;
|
|
|
|
+ hardDespawnDistance = hardDespawnDistance*hardDespawnDistance;
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityInsentient.java b/src/main/java/net/minecraft/server/EntityInsentient.java
|
2018-09-01 00:56:57 +02:00
|
|
|
index cc74150dae..9e95ede7fe 100644
|
2016-03-01 00:09:49 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityInsentient.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityInsentient.java
|
2018-09-01 00:56:57 +02:00
|
|
|
@@ -626,13 +626,13 @@ public abstract class EntityInsentient extends EntityLiving {
|
2016-03-01 00:09:49 +01:00
|
|
|
double d2 = entityhuman.locZ - this.locZ;
|
|
|
|
double d3 = d0 * d0 + d1 * d1 + d2 * d2;
|
|
|
|
|
|
|
|
- if (d3 > 16384.0D) { // CraftBukkit - remove isTypeNotPersistent() check
|
|
|
|
+ if (d3 > world.paperConfig.hardDespawnDistance) { // CraftBukkit - remove isTypeNotPersistent() check // Paper - custom despawn distances
|
|
|
|
this.die();
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (this.ticksFarFromPlayer > 600 && this.random.nextInt(800) == 0 && d3 > 1024.0D) { // CraftBukkit - remove isTypeNotPersistent() check
|
|
|
|
+ if (this.ticksFarFromPlayer > 600 && this.random.nextInt(800) == 0 && d3 > world.paperConfig.softDespawnDistance) { // CraftBukkit - remove isTypeNotPersistent() check // Paper - custom despawn distances
|
|
|
|
this.die();
|
|
|
|
- } else if (d3 < 1024.0D) {
|
|
|
|
+ } else if (d3 < world.paperConfig.softDespawnDistance) { // Paper - custom despawn distances
|
|
|
|
this.ticksFarFromPlayer = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--
|
2018-07-04 09:55:24 +02:00
|
|
|
2.18.0
|
2016-03-01 00:09:49 +01:00
|
|
|
|