2019-12-12 00:43:22 +01:00
|
|
|
From eaaf3357e4e96bf181c4f311f7e20ad9e798830c 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
|
2019-12-12 00:43:22 +01:00
|
|
|
index 671587631..e315a00cc 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
|
2019-10-27 00:55:58 +02:00
|
|
|
@@ -344,4 +344,9 @@ public class PaperWorldConfig {
|
2019-04-28 01:23:53 +02:00
|
|
|
expMergeMaxValue = getInt("experience-merge-max-value", -1);
|
|
|
|
log("Experience Merge Max Value: " + expMergeMaxValue);
|
2018-01-11 23:50:27 +01:00
|
|
|
}
|
2018-07-18 20:55:52 +02:00
|
|
|
+
|
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
|
2019-12-12 00:43:22 +01:00
|
|
|
index 8c4f3b2c2..1c1ff2069 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
|
2019-06-25 03:47:58 +02:00
|
|
|
@@ -171,7 +171,8 @@ public class EntitySquid extends EntityWaterAnimal {
|
|
|
|
}
|
2018-01-11 23:50:27 +01:00
|
|
|
|
2019-06-25 03:47:58 +02:00
|
|
|
public static boolean b(EntityTypes<EntitySquid> entitytypes, GeneratorAccess generatoraccess, EnumMobSpawn enummobspawn, BlockPosition blockposition, Random random) {
|
|
|
|
- return blockposition.getY() > generatoraccess.getMinecraftWorld().spigotConfig.squidSpawnRangeMin && blockposition.getY() < generatoraccess.getSeaLevel(); // Spigot
|
|
|
|
+ final double maxHeight = generatoraccess.getMinecraftWorld().paperConfig.squidMaxSpawnHeight > 0 ? generatoraccess.getMinecraftWorld().paperConfig.squidMaxSpawnHeight : generatoraccess.getSeaLevel(); // Paper
|
|
|
|
+ return blockposition.getY() > generatoraccess.getMinecraftWorld().spigotConfig.squidSpawnRangeMin && blockposition.getY() < maxHeight; // Spigot // Paper
|
2018-01-11 23:50:27 +01:00
|
|
|
}
|
|
|
|
|
2019-04-28 01:23:53 +02:00
|
|
|
public void a(float f, float f1, float f2) {
|
2018-01-11 23:50:27 +01:00
|
|
|
--
|
2019-12-12 00:43:22 +01:00
|
|
|
2.17.1
|
2018-01-11 23:50:27 +01:00
|
|
|
|