From 15fa38b848c016f6b3404cd8428b2517a3e00984 Mon Sep 17 00:00:00 2001
From: Jeija <norrepli@gmail.com>
Date: Mon, 20 Aug 2012 10:12:10 +0200
Subject: Switch from tile_images to tiles = {...}

---
 mesecons_torch/init.lua | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'mesecons_torch')

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",
-- 
cgit v1.2.3