Tidied code

This commit is contained in:
TenPlus1 2015-08-28 20:27:06 +01:00
parent 793c12cbc5
commit 3e0471d041
1 changed files with 7 additions and 7 deletions

View File

@ -1,8 +1,6 @@
-- Baked Clay (0.4) by TenPlus1
local clay = {}
clay.dyes = {
local clay = {
{"white", "White", "basecolor_white"},
{"grey", "Grey", "basecolor_grey"},
{"black", "Black", "basecolor_black"},
@ -20,13 +18,13 @@ clay.dyes = {
{"dark_green", "Dark Green", "unicolor_dark_green"},
}
minetest.register_craft({
type = "cooking",
output = "bakedclay:white",
minetest.register_craft({
type = "cooking",
output = "bakedclay:white",
recipe = "default:clay",
})
for _, row in ipairs(clay.dyes) do
for _, row in ipairs(clay) do
-- node definition
minetest.register_node("bakedclay:" .. row[1], {
@ -44,12 +42,14 @@ for _, row in ipairs(clay.dyes) do
})
-- register stair and slab
if stairs and not stairs.mod then
stairs.register_stair_and_slab("bakedclay_".. row[1], "bakedclay:".. row[1],
{cracky=3},
{"baked_clay_" .. row[1] .. ".png"},
"Baked Clay " .. row[2] .. " Stair",
"Baked Clay " .. row[2] .. " Slab",
default.node_sound_stone_defaults())
end
end
-- register a few extra dye colour options