From 1c204006f351fecf28065136a4208139d46724ea Mon Sep 17 00:00:00 2001 From: Chris N Date: Thu, 31 Jul 2014 14:16:42 -1000 Subject: [PATCH] Fix bug causing a crash when technic is enabled I'm amazed it hadn't crashed sooner with such a stupid error... --- nodes.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nodes.lua b/nodes.lua index 91d9aa9..2919490 100644 --- a/nodes.lua +++ b/nodes.lua @@ -542,13 +542,13 @@ minetest.register_craft({ minetest.register_node("skylands:s_pillar", { description = "A Hack like you should know what this does...", - tiles = "skylands_quartz_pillar.png", + tiles = {"skylands_quartz_pillar.png"}, groups = {crumbly=3, schema=1}, }) minetest.register_node("skylands:s_parthenon", { description = "A Hack like you should know what this does...", - tiles = "skylands_quartz.png", + tiles = {"skylands_quartz.png"}, groups = {crumbly=3, schema=1}, })