summaryrefslogtreecommitdiff
path: root/mesecons_torch
diff options
context:
space:
mode:
authorJeija <norrepli@gmail.com>2012-08-20 10:12:10 +0200
committerJeija <norrepli@gmail.com>2012-08-20 10:12:10 +0200
commit15fa38b848c016f6b3404cd8428b2517a3e00984 (patch)
treea1287eda107529b40efd80ee2df9fcf98e66663f /mesecons_torch
parentb2c5a672e7a6f134d49fe7136750fbe639680f81 (diff)
downloadmesecons-15fa38b848c016f6b3404cd8428b2517a3e00984.tar
mesecons-15fa38b848c016f6b3404cd8428b2517a3e00984.tar.gz
mesecons-15fa38b848c016f6b3404cd8428b2517a3e00984.tar.bz2
mesecons-15fa38b848c016f6b3404cd8428b2517a3e00984.tar.xz
mesecons-15fa38b848c016f6b3404cd8428b2517a3e00984.zip
Switch from tile_images to tiles = {...}
Diffstat (limited to 'mesecons_torch')
-rw-r--r--mesecons_torch/init.lua4
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",