maybe temporary changes

This commit is contained in:
HybridDog 2014-06-14 16:34:44 +02:00
parent f9f05a2296
commit ca0b50e23d
3 changed files with 15 additions and 2 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
## Generic ignorable patterns and files
*~
.*.swp
debug.txt

View File

@ -1,2 +1,3 @@
default
stairs
vector_extras

View File

@ -39,8 +39,16 @@ local STONELIKENODES = {
{"fokni_gnebbrick", "Fokni Gneb Brick"},
}
for i in ipairs(STONELIKENODES) do
monode(STONELIKENODES[i][1], STONELIKENODES[i][2], 0)
for _,i in ipairs(STONELIKENODES) do
local name, desc = unpack(i)
monode(name, desc, 0)
stairs.register_stair_and_slab(name, "extrablocks:"..name,
{cracky=3},
{"extrablocks_"..name..".png"},
desc.." Stair",
desc.." Slab",
default.node_sound_stone_defaults()
)
end
orenode("lapis_lazuli", "Lapis Lazuli Ore")