Skip to content

Commit

Permalink
Fix typo in water_flowing tile animation Also add missing commas and …
Browse files Browse the repository at this point in the history
…use non-deprecated field-names
  • Loading branch information
PilzAdam authored and Ekdohibs committed Jan 10, 2015
1 parent 4ce4752 commit 3689bda
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions mods/default/nodes.lua
Expand Up @@ -870,7 +870,7 @@ minetest.register_node("default:water_source", {
type = "vertical_frames",
aspect_w = 16,
aspect_h = 16,
length = 2.0
length = 2.0,
},
},
},
Expand All @@ -882,7 +882,7 @@ minetest.register_node("default:water_source", {
type = "vertical_frames",
aspect_w = 16,
aspect_h = 16,
length = 2.0
length = 2.0,
},
backface_culling = false,
},
Expand Down Expand Up @@ -910,23 +910,23 @@ minetest.register_node("default:water_flowing", {
tiles = {"default_water.png"},
special_tiles = {
{
image = "default_water_flowing_animated.png",
name = "default_water_flowing_animated.png",
backface_culling = false,
animation = {
type =" vertical_frames",
type = "vertical_frames",
aspect_w = 16,
aspect_h = 16,
length = 0.8
length = 0.8,
},
},
{
image = "default_water_flowing_animated.png",
name = "default_water_flowing_animated.png",
backface_culling = true,
animation = {
type = "vertical_frames",
aspect_w = 16,
aspect_h = 16,
length = 0.8
length = 0.8,
},
},
},
Expand Down Expand Up @@ -960,7 +960,7 @@ minetest.register_node("default:lava_source", {
type = "vertical_frames",
aspect_w = 16,
aspect_h = 16,
length = 3.0
length = 3.0,
},
},
},
Expand All @@ -972,7 +972,7 @@ minetest.register_node("default:lava_source", {
type = "vertical_frames",
aspect_w = 16,
aspect_h = 16,
length = 3.0
length = 3.0,
},
backface_culling = false,
},
Expand Down Expand Up @@ -1002,23 +1002,23 @@ minetest.register_node("default:lava_flowing", {
tiles = {"default_lava.png"},
special_tiles = {
{
image = "default_lava_flowing_animated.png",
name = "default_lava_flowing_animated.png",
backface_culling = false,
animation = {
type = "vertical_frames",
aspect_w = 16,
aspect_h = 16,
length = 3.3
length = 3.3,
},
},
{
image = "default_lava_flowing_animated.png",
name = "default_lava_flowing_animated.png",
backface_culling = true,
animation = {
type = "vertical_frames",
aspect_w = 16,
aspect_h = 16,
length = 3.3
length = 3.3,
},
},
},
Expand Down

0 comments on commit 3689bda

Please sign in to comment.