Skip to content

Commit 4d28058

Browse files
committed
make cactus max grow height config consistent with flower chance
1 parent 8e4021a commit 4d28058

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

paper-server/patches/sources/net/minecraft/world/level/block/CactusBlock.java.patch

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
--- a/net/minecraft/world/level/block/CactusBlock.java
22
+++ b/net/minecraft/world/level/block/CactusBlock.java
3-
@@ -58,7 +_,7 @@
3+
@@ -58,25 +_,29 @@
44
int ageValue = state.getValue(AGE);
55

66
while (level.getBlockState(pos.below(i)).is(this)) {
@@ -9,9 +9,10 @@
99
return;
1010
}
1111
}
12-
@@ -66,17 +_,21 @@
12+
1313
if (ageValue == 8 && this.canSurvive(this.defaultBlockState(), level, pos.above())) {
14-
double d = i >= 3 ? 0.25 : 0.1;
14+
- double d = i >= 3 ? 0.25 : 0.1;
15+
+ double d = i >= level.paperConfig().maxGrowthHeight.cactus ? 0.25 : 0.1; // Paper - Configurable cactus/bamboo/reed growth height
1516
if (random.nextDouble() <= d) {
1617
- level.setBlockAndUpdate(blockPos, Blocks.CACTUS_FLOWER.defaultBlockState());
1718
- }

paper-server/src/main/java/io/papermc/paper/configuration/WorldConfiguration.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
import net.minecraft.world.item.Item;
5353
import net.minecraft.world.item.Items;
5454
import net.minecraft.world.level.NaturalSpawner;
55+
import net.minecraft.world.level.block.BambooStalkBlock;
5556
import net.minecraft.world.level.block.Block;
5657
import net.minecraft.world.level.block.Blocks;
5758
import net.minecraft.world.level.levelgen.feature.ConfiguredFeature;
@@ -389,7 +390,7 @@ public class MaxGrowthHeight extends ConfigurationPart {
389390
public Bamboo bamboo;
390391

391392
public class Bamboo extends ConfigurationPart {
392-
public int max = 16;
393+
public int max = BambooStalkBlock.MAX_HEIGHT;
393394
public int min = 11;
394395
}
395396
}

0 commit comments

Comments
 (0)