diff --git a/init.lua b/init.lua index ed3b8da..8ede19a 100644 --- a/init.lua +++ b/init.lua @@ -1,21 +1,21 @@ minetest.register_node("steel:plate_soft", { description = "soft steel plate", - tile_images = {"steelplatesoft.png"}, + tiles = {"steelplatesoft.png"}, is_ground_content = true, groups = {cracky=2}, }) minetest.register_node("steel:plate_hard", { description = "hardened steel plate", - tile_images = {"steelplatehard.png"}, + tiles = {"steelplatehard.png"}, is_ground_content = true, groups = {cracky=1}, }) minetest.register_node("steel:plate_rusted", { description = "rusted steel plate", - tile_images = {"steel_rusted.png"}, + tiles = {"steel_rusted.png"}, is_ground_content = true, groups = {cracky=1,choppy=1}, }) @@ -23,7 +23,7 @@ minetest.register_node("steel:plate_rusted", { minetest.register_node("steel:strut", { drawtype = "glasslike", description = "strut", - tile_images = {"strut.png"}, + tiles = {"strut.png"}, is_ground_content = true, paramtype= "light", groups = {choppy=1,cracky=1}, @@ -32,7 +32,7 @@ minetest.register_node("steel:strut", { minetest.register_node("steel:grate_soft", { description = "soft Steel Grate", drawtype = "fencelike", - tile_images = {"worldgratesoft.png"}, + tiles = {"worldgratesoft.png"}, inventory_image = "gratesoft.png", wield_image = "gratesoft.png", paramtype = "light", @@ -48,7 +48,7 @@ minetest.register_node("steel:grate_soft", { minetest.register_node("steel:grate_hard", { description = "hardened Steel Grate", drawtype = "fencelike", - tile_images = {"worldgratehard.png"}, + tiles = {"worldgratehard.png"}, inventory_image = "gratehard.png", wield_image = "gratehard.png", paramtype = "light", @@ -64,7 +64,7 @@ minetest.register_node("steel:grate_hard", { minetest.register_node("steel:roofing", { description = "corrugated steel roofing", drawtype = "raillike", - tile_images = {"corrugated_steel.png", "corrugated_steel.png", "corrugated_steel.png", "corrugated_steel.png"}, + tiles = {"corrugated_steel.png", "corrugated_steel.png", "corrugated_steel.png", "corrugated_steel.png"}, inventory_image = "corrugated_steel.png", wield_image = "corrugated_steel.png", paramtype = "light",