mirror of
https://github.com/minetest-mods/moreblocks.git
synced 2025-07-14 22:10:19 +02:00
daily checkpoint, not much improved, stairsplus still completely nonfunctional
This commit is contained in:
9
stairsplus/resources/craft_materials.lua
Normal file
9
stairsplus/resources/craft_materials.lua
Normal file
@ -0,0 +1,9 @@
|
||||
local table_set_all = stairsplus.util.table_set_all
|
||||
|
||||
stairsplus.resources.craft_materials = {}
|
||||
|
||||
if stairsplus.has.default then
|
||||
table_set_all(stairsplus.resources.craft_materials, {
|
||||
steel_ingot = "default:steel_ingot",
|
||||
})
|
||||
end
|
4
stairsplus/resources/init.lua
Normal file
4
stairsplus/resources/init.lua
Normal file
@ -0,0 +1,4 @@
|
||||
stairsplus.resources = {}
|
||||
|
||||
stairsplus.dofile("resources", "craft_materials")
|
||||
stairsplus.dofile("resources", "sounds")
|
9
stairsplus/resources/sounds.lua
Normal file
9
stairsplus/resources/sounds.lua
Normal file
@ -0,0 +1,9 @@
|
||||
local table_set_all = moreblocks.util.table_set_all
|
||||
|
||||
moreblocks.resources.sounds = {}
|
||||
|
||||
if moreblocks.has.default then
|
||||
table_set_all(moreblocks.resources.sounds, {
|
||||
wood = default.node_sound_wood_defaults(),
|
||||
})
|
||||
end
|
Reference in New Issue
Block a user