This commit is contained in:
Xeno333 2024-11-17 22:41:55 -06:00
parent c3cd64a646
commit 03498446a5
2 changed files with 15 additions and 0 deletions

Binary file not shown.

View File

@ -27,6 +27,13 @@ core.register_node("1042_nodes:water_source", {
buildable_to = true,
is_ground_content = false,
sounds = {
footstep = {
name = "water",
gain = 1,
pitch = 1
},
},
liquidtype = "source",
liquid_alternative_flowing = "1042_nodes:water_flowing",
@ -70,6 +77,14 @@ core.register_node("1042_nodes:water_flowing", {
buildable_to = true,
is_ground_content = false,
sounds = {
footstep = {
name = "water",
gain = 1,
pitch = 1
},
},
liquidtype = "flowing",
liquid_alternative_flowing = "1042_nodes:water_flowing",
liquid_alternative_source = "1042_nodes:water_source",