diff --git a/steel/init.lua b/steel/init.lua index fb0298a..0b1ef0c 100644 --- a/steel/init.lua +++ b/steel/init.lua @@ -78,7 +78,7 @@ end minetest.register_node("steel:plate_soft", { description = "Soft steel plate", - tile_images = {"steelplatesoft.png"}, + tiles = {"steelplatesoft.png"}, is_ground_content = true, groups = {cracky=2}, sounds = default.node_sound_stone_defaults(), @@ -86,7 +86,7 @@ minetest.register_node("steel:plate_soft", { minetest.register_node("steel:plate_hard", { description = "Hardened steel plate", - tile_images = {"steelplatehard.png"}, + tiles = {"steelplatehard.png"}, is_ground_content = true, groups = {cracky=1}, sounds = default.node_sound_stone_defaults(), @@ -94,7 +94,7 @@ minetest.register_node("steel:plate_hard", { 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}, sounds = default.node_sound_stone_defaults(), @@ -106,7 +106,7 @@ else 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}, @@ -117,7 +117,7 @@ end 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", @@ -133,7 +133,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", @@ -149,7 +149,7 @@ minetest.register_node("steel:grate_hard", { minetest.register_node("steel:roofing", { description = "Corrugated steel roofing", drawtype = "raillike", - tile_images = {"corrugated_steel.png"}, + tiles = {"corrugated_steel.png"}, inventory_image = "corrugated_steel.png", wield_image = "corrugated_steel.png", paramtype = "light", @@ -170,7 +170,7 @@ minetest.register_node("steel:roofing", { minetest.register_node("steel:roofing_wall", { description = "Corrugated steel wall", drawtype = "nodebox", - tile_images = {"corrugated_steel.png"}, + tiles = {"corrugated_steel.png"}, inventory_image = "corrugated_steel.png", wield_image = "corrugated_steel.png", paramtype = "light",