diff options
author | Jeija <norrepli@gmail.com> | 2012-08-20 10:12:10 +0200 |
---|---|---|
committer | Jeija <norrepli@gmail.com> | 2012-08-20 10:12:10 +0200 |
commit | 15fa38b848c016f6b3404cd8428b2517a3e00984 (patch) | |
tree | a1287eda107529b40efd80ee2df9fcf98e66663f /mesecons_movestones/init.lua | |
parent | b2c5a672e7a6f134d49fe7136750fbe639680f81 (diff) |
Switch from tile_images to tiles = {...}
Diffstat (limited to 'mesecons_movestones/init.lua')
-rw-r--r-- | mesecons_movestones/init.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesecons_movestones/init.lua b/mesecons_movestones/init.lua index 6441e61..857ddd4 100644 --- a/mesecons_movestones/init.lua +++ b/mesecons_movestones/init.lua @@ -36,7 +36,7 @@ function mesecon:get_movestone_direction(pos) end minetest.register_node("mesecons_movestones:movestone", { - tile_images = {"jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_arrows.png", "jeija_movestone_arrows.png"}, + tiles = {"jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_arrows.png", "jeija_movestone_arrows.png"}, paramtype2 = "facedir", legacy_facedir_simple = true, groups = {cracky=3}, @@ -113,7 +113,7 @@ end) -- STICKY_MOVESTONE minetest.register_node("mesecons_movestones:sticky_movestone", { - tile_images = {"jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_sticky_movestone.png", "jeija_sticky_movestone.png"}, + tiles = {"jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_movestone_side.png", "jeija_sticky_movestone.png", "jeija_sticky_movestone.png"}, inventory_image = minetest.inventorycube("jeija_sticky_movestone.png", "jeija_movestone_side.png", "jeija_movestone_side.png"), paramtype2 = "facedir", legacy_facedir_simple = true, |