2018-07-24 02:24:44 +02:00
|
|
|
From 17b75b1da091d4982e72e3604c4b0380515d34d1 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-07-24 02:24:44 +02:00
|
|
|
index b8a6161d8..32d00e274 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-07-15 03:53:17 +02:00
|
|
|
index 54685157f..83fb53643 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-07-15 03:53:17 +02:00
|
|
|
int j = ((Integer) iblockdata.get(BlockCactus.AGE)).intValue();
|
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-07-15 03:53:17 +02:00
|
|
|
index 313821d52..c4e7f318d 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-07-15 03:53:17 +02:00
|
|
|
int j = ((Integer) iblockdata.get(BlockReed.AGE)).intValue();
|
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-07-04 09:55:24 +02:00
|
|
|
2.18.0
|
2016-03-01 00:09:49 +01:00
|
|
|
|