File tree 2 files changed +6
-4
lines changed
patches/sources/net/minecraft/world/level/block
src/main/java/io/papermc/paper/configuration
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
1
--- a/net/minecraft/world/level/block/CactusBlock.java
2
2
+++ b/net/minecraft/world/level/block/CactusBlock.java
3
- @@ -58,7 +_,7 @@
3
+ @@ -58,25 +_,29 @@
4
4
int ageValue = state.getValue(AGE);
5
5
6
6
while (level.getBlockState(pos.below(i)).is(this)) {
9
9
return;
10
10
}
11
11
}
12
- @@ -66,17 +_,21 @@
12
+
13
13
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
15
16
if (random.nextDouble() <= d) {
16
17
- level.setBlockAndUpdate(blockPos, Blocks.CACTUS_FLOWER.defaultBlockState());
17
18
- }
Original file line number Diff line number Diff line change 52
52
import net .minecraft .world .item .Item ;
53
53
import net .minecraft .world .item .Items ;
54
54
import net .minecraft .world .level .NaturalSpawner ;
55
+ import net .minecraft .world .level .block .BambooStalkBlock ;
55
56
import net .minecraft .world .level .block .Block ;
56
57
import net .minecraft .world .level .block .Blocks ;
57
58
import net .minecraft .world .level .levelgen .feature .ConfiguredFeature ;
@@ -389,7 +390,7 @@ public class MaxGrowthHeight extends ConfigurationPart {
389
390
public Bamboo bamboo ;
390
391
391
392
public class Bamboo extends ConfigurationPart {
392
- public int max = 16 ;
393
+ public int max = BambooStalkBlock . MAX_HEIGHT ;
393
394
public int min = 11 ;
394
395
}
395
396
}
You can’t perform that action at this time.
0 commit comments