2019-07-20 06:01:24 +02:00
|
|
|
From 0057bdebdfd3f05456d733383f3ae0570885290b 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-07-20 06:01:24 +02:00
|
|
|
index b3d8fe9c68..7287bf7d9b 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-07-03 22:44:07 +02:00
|
|
|
@@ -339,4 +339,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-07-20 06:01:24 +02:00
|
|
|
index f8fa64959f..735d1879a8 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-06-25 03:47:58 +02:00
|
|
|
2.22.0
|
2018-01-11 23:50:27 +01:00
|
|
|
|