Skip to content

Commit 1a1adfe

Browse files
committed
fixed all caves being flooded below Y=50 and schulk being too prominent
1 parent b26ccb8 commit 1a1adfe

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ yarn_mappings=1.21.1+build.3
99
loader_version=0.16.7
1010

1111
# Mod Properties
12-
mod_version=4.1
12+
mod_version=4.1.1-testing
1313
maven_group=com.badgerson.larion
1414
archives_base_name=larion-mc1.21.1
1515

src/main/resources/data/larion/worldgen/density_function/overworld/caves/river_noodle_flood.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
"min_inclusive": 50,
77
"max_exclusive": 120,
88
"when_in_range": "larion:overworld/ridges/rivers",
9-
"when_out_of_range": 0.0
9+
"when_out_of_range": -1.0
1010
}
1111
}

src/main/resources/data/larion/worldgen/density_function/overworld/terrain_features.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"type": "minecraft:cache_2d",
55
"argument": {
66
"type": "minecraft:mul",
7-
"note": "3 / 640, aka depth divided by world height in blocks",
8-
"argument1": 0.0046875,
7+
"note": "Depth range divided by world height in blocks",
8+
"argument1": 0.00375,
99
"argument2": {
1010
"type": "minecraft:add",
1111
"argument1": {

src/main/resources/data/larion/worldgen/density_function/overworld/terrain_height.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"type": "minecraft:cache_2d",
55
"argument": {
66
"type": "minecraft:mul",
7-
"note": "3 / 640, aka depth divided by world height in blocks",
8-
"argument1": 0.0046875,
7+
"note": "Depth range divided by world height in blocks",
8+
"argument1": 0.00375,
99
"argument2": {
1010
"type": "minecraft:add",
1111
"argument1": -192,

src/main/resources/data/minecraft/worldgen/density_function/overworld/depth.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
"type": "minecraft:add",
33
"argument1": {
44
"type": "minecraft:y_clamped_gradient",
5-
"from_value": 1.5,
5+
"from_value": 1.2,
66
"from_y": -128,
7-
"to_value": -1.5,
7+
"to_value": -1.2,
88
"to_y": 512
99
},
1010
"argument2": "larion:overworld/terrain_height"

src/main/resources/data/minecraft/worldgen/noise_settings/overworld.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@
3030
"erosion": "minecraft:overworld/erosion",
3131
"final_density": "larion:overworld/final_density",
3232
"fluid_level_floodedness": {
33-
"note": "Modified for Larion - enables flooding of river caves and removes (most) flooding of lava rivers.",
33+
"note": "Modified for Larion - enables flooding of river tunnels and removes (most) flooding of lava rivers.",
3434
"type": "range_choice",
3535
"min_inclusive": 0.35,
3636
"max_exclusive": 1.0,
3737
"input": "larion:overworld/caves/lava_river_flood",
3838
"when_in_range": -10.0,
3939
"when_out_of_range": {
4040
"type": "range_choice",
41-
"min_inclusive": -0.2,
41+
"min_inclusive": 0.0,
4242
"max_exclusive": 0.35,
4343
"input": "larion:overworld/caves/river_noodle_flood",
4444
"when_in_range": 1,
@@ -53,7 +53,7 @@
5353
"fluid_level_spread": {
5454
"note": "Modified for Larion - enables flooding of river caves.",
5555
"type": "range_choice",
56-
"min_inclusive": -0.2,
56+
"min_inclusive": 0.0,
5757
"max_exclusive": 0.35,
5858
"input": "larion:overworld/caves/river_noodle_flood",
5959
"when_in_range": 0.5,

0 commit comments

Comments
 (0)