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_torch | |
parent | b2c5a672e7a6f134d49fe7136750fbe639680f81 (diff) |
Switch from tile_images to tiles = {...}
Diffstat (limited to 'mesecons_torch')
-rw-r--r-- | mesecons_torch/init.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesecons_torch/init.lua b/mesecons_torch/init.lua index 1db8f2a..d7a9596 100644 --- a/mesecons_torch/init.lua +++ b/mesecons_torch/init.lua @@ -10,7 +10,7 @@ minetest.register_craft({ minetest.register_node("mesecons_torch:mesecon_torch_off", { drawtype = "torchlike", - tile_images = {"jeija_torches_off.png", "jeija_torches_off_ceiling.png", "jeija_torches_off_side.png"}, + tiles = {"jeija_torches_off.png", "jeija_torches_off_ceiling.png", "jeija_torches_off_side.png"}, inventory_image = "jeija_torches_off.png", paramtype = "light", walkable = false, @@ -29,7 +29,7 @@ minetest.register_node("mesecons_torch:mesecon_torch_off", { minetest.register_node("mesecons_torch:mesecon_torch_on", { drawtype = "torchlike", - tile_images = {"jeija_torches_on.png", "jeija_torches_on_ceiling.png", "jeija_torches_on_side.png"}, + tiles = {"jeija_torches_on.png", "jeija_torches_on_ceiling.png", "jeija_torches_on_side.png"}, inventory_image = "jeija_torches_on.png", wield_image = "jeija_torches_on.png", paramtype = "light", |