wall.register: Allow table as texture value

This commit is contained in:
kakalak-lumberJack 2018-07-26 15:50:51 -04:00 committed by SmallJoker
parent 506eca22bc
commit ab4940505e
1 changed files with 9 additions and 5 deletions

View File

@ -1,6 +1,10 @@
walls = {}
walls.register = function(wall_name, wall_desc, wall_texture, wall_mat, wall_sounds)
walls.register = function(wall_name, wall_desc, wall_texture_table, wall_mat, wall_sounds)
--make wall_texture_table paramenter backwards compatible for mods passing single texture
if type(wall_texture_table) ~= "table" then
wall_texture_table = { wall_texture_table }
end
-- inventory node, and pole-type wall start item
minetest.register_node(wall_name, {
description = wall_desc,
@ -17,7 +21,7 @@ walls.register = function(wall_name, wall_desc, wall_texture, wall_mat, wall_sou
connects_to = { "group:wall", "group:stone", "group:fence" },
paramtype = "light",
is_ground_content = false,
tiles = { wall_texture, },
tiles = wall_texture_table,
walkable = true,
groups = { cracky = 3, wall = 1, stone = 2 },
sounds = wall_sounds,
@ -35,12 +39,12 @@ walls.register = function(wall_name, wall_desc, wall_texture, wall_mat, wall_sou
end
walls.register("walls:cobble", "Cobblestone Wall", "default_cobble.png",
walls.register("walls:cobble", "Cobblestone Wall", {"default_cobble.png"},
"default:cobble", default.node_sound_stone_defaults())
walls.register("walls:mossycobble", "Mossy Cobblestone Wall", "default_mossycobble.png",
walls.register("walls:mossycobble", "Mossy Cobblestone Wall", {"default_mossycobble.png"},
"default:mossycobble", default.node_sound_stone_defaults())
walls.register("walls:desertcobble", "Desert Cobblestone Wall", "default_desert_cobble.png",
walls.register("walls:desertcobble", "Desert Cobblestone Wall", {"default_desert_cobble.png"},
"default:desert_cobble", default.node_sound_stone_defaults())