Skip to content

Commit 15d0ec1

Browse files
committed
small tweaks
1 parent b0a9362 commit 15d0ec1

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

structures/vegetation/coral/dendriform_coral_procedural.tesf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ else if (stemRand == 2) stemBlock = "minecraft:tube_coral_block";
1010
else if (stemRand == 3) stemBlock = "minecraft:fire_coral_block";
1111
else if (stemRand == 4) stemBlock = "minecraft:horn_coral_block";
1212

13-
num stemHeight = randomInt(2) + 1; // Length of main trunk
13+
num stemHeight = randomInt(3) + 1; // Length of main trunk
1414

1515
// 'Top branch' = branches that stem from the top of the main stem
16-
num topBranchCount = randomInt(1) + 1; // How many top branches will generate
16+
num topBranchCount = randomInt(2) + 1; // How many top branches will generate
1717
num topBranchLengthMin = 2; // Minimum length of each branch
1818
num topBranchLengthVariation = 2; // Random branch length variation in blocks from 0 - n
1919
num topBranchVerticalDirection = 0.75; // Roughly how much any given branch will point upwards

structures/vegetation/sculk/underwater/sculk_upward_tendril.tesf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
num radius = 2 + randomInt(1);
1+
num radius = 2 + randomInt(2);
22
num length = 20 + randomInt(15);
33
str tendrilBlock = "minecraft:sculk";
44
num endBuffer = length * 0.5;

0 commit comments

Comments
 (0)