Paper/Spigot-Server-Patches/0007-Configurable-squid-spawn-ranges.patch

41 lines
1.8 KiB
Diff
Raw Normal View History

From 4e2dd233744cdd1ead4930a0e390656b3270c8f5 Mon Sep 17 00:00:00 2001
2016-03-01 00:09:49 +01:00
From: Zach Brown <zach.brown@destroystokyo.com>
Date: Tue, 1 Mar 2016 12:45:11 -0600
Subject: [PATCH] Configurable squid spawn ranges
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
index dae60dc..c74c8a7 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
@@ -69,4 +69,12 @@ public class PaperWorldConfig {
2016-03-01 00:09:49 +01:00
config.addDefault("world-settings.default." + path, def);
return config.getString("world-settings." + worldName + "." + path, config.getString("world-settings.default." + path));
}
+
+ public double squidMinSpawnHeight;
+ public double squidMaxSpawnHeight;
+ private void squidSpawnHeights() {
+ squidMinSpawnHeight = getDouble("squid-spawn-height.minimum", 45.0D);
+ squidMaxSpawnHeight = getDouble("squid-spawn-height.maximum", 63.0D);
+ log("Squids will spawn between Y: " + squidMinSpawnHeight + " and Y: " + squidMaxSpawnHeight);
+ }
}
diff --git a/src/main/java/net/minecraft/server/EntitySquid.java b/src/main/java/net/minecraft/server/EntitySquid.java
2016-05-12 04:07:46 +02:00
index c771b6b..62469f8 100644
2016-03-01 00:09:49 +01:00
--- a/src/main/java/net/minecraft/server/EntitySquid.java
+++ b/src/main/java/net/minecraft/server/EntitySquid.java
2016-05-12 04:07:46 +02:00
@@ -141,7 +141,8 @@ public class EntitySquid extends EntityWaterAnimal {
2016-03-01 00:09:49 +01:00
}
2016-05-12 04:07:46 +02:00
public boolean cG() {
- return this.locY > 45.0D && this.locY < (double) this.world.K() && super.cG();
2016-03-01 00:09:49 +01:00
+ // Paper - Configurable squid spawn height range
2016-05-12 04:07:46 +02:00
+ return this.locY > world.paperConfig.squidMinSpawnHeight && this.locY < world.paperConfig.squidMaxSpawnHeight && super.cG();
2016-03-01 00:09:49 +01:00
}
public void b(float f, float f1, float f2) {
--
2016-05-12 04:07:46 +02:00
2.8.2
2016-03-01 00:09:49 +01:00