aboutsummaryrefslogtreecommitdiffhomepage
path: root/Spigot-Server-Patches/0007-Configurable-cactus-and-reed-natural-growth-heights.patch
diff options
context:
space:
mode:
Diffstat (limited to 'Spigot-Server-Patches/0007-Configurable-cactus-and-reed-natural-growth-heights.patch')
-rw-r--r--Spigot-Server-Patches/0007-Configurable-cactus-and-reed-natural-growth-heights.patch12
1 files changed, 6 insertions, 6 deletions
diff --git a/Spigot-Server-Patches/0007-Configurable-cactus-and-reed-natural-growth-heights.patch b/Spigot-Server-Patches/0007-Configurable-cactus-and-reed-natural-growth-heights.patch
index f6550b4df5..77fbe21253 100644
--- a/Spigot-Server-Patches/0007-Configurable-cactus-and-reed-natural-growth-heights.patch
+++ b/Spigot-Server-Patches/0007-Configurable-cactus-and-reed-natural-growth-heights.patch
@@ -1,14 +1,14 @@
-From fb33837750d4fdd9577d1baea535a594d1b3e899 Mon Sep 17 00:00:00 2001
+From 9d3232a2cbd15f79ee0f7e152ef02dc867d1840f Mon Sep 17 00:00:00 2001
From: Zach Brown <[email protected]>
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
-index c74c8a7..8d9c322 100644
+index f24839378..6228bc1f6 100644
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
-@@ -77,4 +77,13 @@ public class PaperWorldConfig {
+@@ -71,4 +71,13 @@ public class PaperWorldConfig {
squidMaxSpawnHeight = getDouble("squid-spawn-height.maximum", 63.0D);
log("Squids will spawn between Y: " + squidMinSpawnHeight + " and Y: " + squidMaxSpawnHeight);
}
@@ -23,7 +23,7 @@ index c74c8a7..8d9c322 100644
+ }
}
diff --git a/src/main/java/net/minecraft/server/BlockCactus.java b/src/main/java/net/minecraft/server/BlockCactus.java
-index 3f579fb..a69a707 100644
+index 3f579fbdb..a69a707aa 100644
--- a/src/main/java/net/minecraft/server/BlockCactus.java
+++ b/src/main/java/net/minecraft/server/BlockCactus.java
@@ -28,7 +28,7 @@ public class BlockCactus extends Block {
@@ -36,7 +36,7 @@ index 3f579fb..a69a707 100644
if (j >= (byte) range(3, ((100.0F / world.spigotConfig.cactusModifier) * 15) + 0.5F, 15)) { // Spigot
diff --git a/src/main/java/net/minecraft/server/BlockReed.java b/src/main/java/net/minecraft/server/BlockReed.java
-index 84014b1..9d1af2a 100644
+index 84014b1c7..9d1af2adc 100644
--- a/src/main/java/net/minecraft/server/BlockReed.java
+++ b/src/main/java/net/minecraft/server/BlockReed.java
@@ -28,7 +28,7 @@ public class BlockReed extends Block {
@@ -49,5 +49,5 @@ index 84014b1..9d1af2a 100644
if (j >= (byte) range(3, ((100.0F / world.spigotConfig.caneModifier) * 15) + 0.5F, 15)) { // Spigot
--
-2.9.3
+2.12.0.windows.1