Switch from tile_images to tiles = {...}

This commit is contained in:
Jeija
2012-08-20 10:12:10 +02:00
parent b2c5a672e7
commit 15fa38b848
11 changed files with 22 additions and 22 deletions

View File

@ -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",