2018-07-04 09:55:24 +02:00
|
|
|
From 0d322700c9153d75a278138ef862ea9cd8fad05b Mon Sep 17 00:00:00 2001
|
2018-01-11 23:50:27 +01:00
|
|
|
From: Zach Brown <zach.brown@destroystokyo.com>
|
|
|
|
Date: Thu, 11 Jan 2018 16:47:28 -0600
|
|
|
|
Subject: [PATCH] Make max squid spawn height configurable
|
|
|
|
|
|
|
|
I don't know why upstream made only the minimum height configurable but
|
|
|
|
whatever
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2018-06-30 07:40:52 +02:00
|
|
|
index 0ddf826f9..9fd76dcc9 100644
|
2018-01-11 23:50:27 +01:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2018-05-30 22:31:55 +02:00
|
|
|
@@ -484,4 +484,9 @@ public class PaperWorldConfig {
|
2018-01-11 23:50:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
+ public double squidMaxSpawnHeight;
|
|
|
|
+ private void squidMaxSpawnHeight() {
|
|
|
|
+ squidMaxSpawnHeight = getDouble("squid-spawn-height.maximum", 0.0D);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntitySquid.java b/src/main/java/net/minecraft/server/EntitySquid.java
|
2018-06-30 07:40:52 +02:00
|
|
|
index 0ce16be65..58a902831 100644
|
2018-01-11 23:50:27 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntitySquid.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntitySquid.java
|
|
|
|
@@ -141,7 +141,9 @@ public class EntitySquid extends EntityWaterAnimal {
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean P() {
|
|
|
|
- return this.locY > this.world.spigotConfig.squidSpawnRangeMin && this.locY < (double) this.world.getSeaLevel() && super.P(); // Spigot
|
|
|
|
+ // Paper - Make max spawn height configurable
|
|
|
|
+ final double maxHeight = world.paperConfig.squidMaxSpawnHeight > 0 ? world.paperConfig.squidMaxSpawnHeight : world.getSeaLevel();
|
|
|
|
+ return this.locY > this.world.spigotConfig.squidSpawnRangeMin && this.locY < maxHeight && super.P(); // Spigot
|
|
|
|
}
|
|
|
|
|
|
|
|
public void b(float f, float f1, float f2) {
|
|
|
|
--
|
2018-06-30 07:40:52 +02:00
|
|
|
2.18.0
|
2018-01-11 23:50:27 +01:00
|
|
|
|