maybe temporary changes
This commit is contained in:
parent
f9f05a2296
commit
ca0b50e23d
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
## Generic ignorable patterns and files
|
||||
*~
|
||||
.*.swp
|
||||
debug.txt
|
@ -1,2 +1,3 @@
|
||||
default
|
||||
stairs
|
||||
vector_extras
|
||||
|
12
init.lua
12
init.lua
@ -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")
|
||||
|
Loading…
x
Reference in New Issue
Block a user