Skip to content

Commit

Permalink
Increase speed of flowing water/river water animations
Browse files Browse the repository at this point in the history
To visually match the 1 node per second spread of flowing water.
  • Loading branch information
Andrey2470T committed Feb 14, 2020
1 parent 3ea648f commit 34b4103
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions mods/default/nodes.lua
Expand Up @@ -2234,7 +2234,7 @@ minetest.register_node("default:water_flowing", {
type = "vertical_frames",
aspect_w = 16,
aspect_h = 16,
length = 0.8,
length = 0.5,
},
},
{
Expand All @@ -2244,7 +2244,7 @@ minetest.register_node("default:water_flowing", {
type = "vertical_frames",
aspect_w = 16,
aspect_h = 16,
length = 0.8,
length = 0.5,
},
},
},
Expand Down Expand Up @@ -2330,7 +2330,7 @@ minetest.register_node("default:river_water_flowing", {
type = "vertical_frames",
aspect_w = 16,
aspect_h = 16,
length = 0.8,
length = 0.5,
},
},
{
Expand All @@ -2340,7 +2340,7 @@ minetest.register_node("default:river_water_flowing", {
type = "vertical_frames",
aspect_w = 16,
aspect_h = 16,
length = 0.8,
length = 0.5,
},
},
},
Expand Down

0 comments on commit 34b4103

Please sign in to comment.