2018-12-08 11:09:55 +01:00
|
|
|
From a33afed850b70f0bb7a2da14d0ea528dad769f8a 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 13:02:51 -0600
|
|
|
|
Subject: [PATCH] Configurable cactus and reed natural growth heights
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2018-12-08 11:09:55 +01:00
|
|
|
index a73865739..098bd3fba 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
|
|
|
@@ -64,4 +64,13 @@ public class PaperWorldConfig {
|
2018-01-11 06:31:19 +01:00
|
|
|
config.addDefault("world-settings.default." + path, def);
|
|
|
|
return config.getString("world-settings." + worldName + "." + path, config.getString("world-settings.default." + path));
|
2016-03-01 00:09:49 +01:00
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public int cactusMaxHeight;
|
|
|
|
+ public int reedMaxHeight;
|
2018-01-11 06:31:19 +01:00
|
|
|
+ private void blockGrowthHeight() {
|
2016-03-01 00:09:49 +01:00
|
|
|
+ cactusMaxHeight = getInt("max-growth-height.cactus", 3);
|
|
|
|
+ reedMaxHeight = getInt("max-growth-height.reeds", 3);
|
|
|
|
+ log("Max height for cactus growth " + cactusMaxHeight + ". Max height for reed growth " + reedMaxHeight);
|
|
|
|
+
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/BlockCactus.java b/src/main/java/net/minecraft/server/BlockCactus.java
|
2018-12-08 11:09:55 +01:00
|
|
|
index 27758bd01..918db3626 100644
|
2016-03-01 00:09:49 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/BlockCactus.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/BlockCactus.java
|
2018-07-15 03:53:17 +02:00
|
|
|
@@ -29,7 +29,7 @@ public class BlockCactus extends Block {
|
|
|
|
;
|
|
|
|
}
|
2016-03-01 00:09:49 +01:00
|
|
|
|
2018-07-15 03:53:17 +02:00
|
|
|
- if (i < 3) {
|
2016-03-01 00:09:49 +01:00
|
|
|
+ if (i < world.paperConfig.cactusMaxHeight) { // Paper - Configurable growth height
|
2018-12-08 11:09:55 +01:00
|
|
|
int j = (Integer) iblockdata.get(BlockCactus.AGE);
|
2016-03-01 00:09:49 +01:00
|
|
|
|
2018-07-15 03:53:17 +02:00
|
|
|
if (j >= (byte) range(3, ((100.0F / world.spigotConfig.cactusModifier) * 15) + 0.5F, 15)) { // Spigot
|
2016-03-01 00:09:49 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/BlockReed.java b/src/main/java/net/minecraft/server/BlockReed.java
|
2018-12-08 11:09:55 +01:00
|
|
|
index fad1a0a83..c7017c58e 100644
|
2016-03-01 00:09:49 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/BlockReed.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/BlockReed.java
|
2018-07-15 03:53:17 +02:00
|
|
|
@@ -25,7 +25,7 @@ public class BlockReed extends Block {
|
|
|
|
;
|
|
|
|
}
|
2016-03-01 00:09:49 +01:00
|
|
|
|
2018-07-15 03:53:17 +02:00
|
|
|
- if (i < 3) {
|
2016-03-01 00:09:49 +01:00
|
|
|
+ if (i < world.paperConfig.reedMaxHeight) { // Paper - Configurable growth height
|
2018-12-08 11:09:55 +01:00
|
|
|
int j = (Integer) iblockdata.get(BlockReed.AGE);
|
2016-03-01 00:09:49 +01:00
|
|
|
|
2018-07-15 03:53:17 +02:00
|
|
|
if (j >= (byte) range(3, ((100.0F / world.spigotConfig.caneModifier) * 15) + 0.5F, 15)) { // Spigot
|
2016-03-01 00:09:49 +01:00
|
|
|
--
|
2018-12-08 11:09:55 +01:00
|
|
|
2.19.2
|
2016-03-01 00:09:49 +01:00
|
|
|
|