Charakterbewegungen hinzugefügt, Deko hinzugefügt, Kochrezepte angepasst
This commit is contained in:
parent
95945c0306
commit
a0c893ca0b
1124 changed files with 64294 additions and 763 deletions
9
mods/moreblocks/stairsplus/resources/craft_materials.lua
Normal file
9
mods/moreblocks/stairsplus/resources/craft_materials.lua
Normal file
|
@ -0,0 +1,9 @@
|
|||
local table_set_all = futil.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
|
|
@ -0,0 +1,6 @@
|
|||
stairsplus.resources.formspec_style = ""
|
||||
|
||||
if stairsplus.has.default then
|
||||
-- prepend background and slot styles from default if available
|
||||
stairsplus.resources.formspec_style = default.gui_bg .. default.gui_bg_img .. default.gui_slots
|
||||
end
|
4
mods/moreblocks/stairsplus/resources/init.lua
Normal file
4
mods/moreblocks/stairsplus/resources/init.lua
Normal file
|
@ -0,0 +1,4 @@
|
|||
stairsplus.resources = {}
|
||||
|
||||
stairsplus.dofile("resources", "craft_materials")
|
||||
stairsplus.dofile("resources", "sounds")
|
9
mods/moreblocks/stairsplus/resources/sounds.lua
Normal file
9
mods/moreblocks/stairsplus/resources/sounds.lua
Normal file
|
@ -0,0 +1,9 @@
|
|||
local table_set_all = futil.table.set_all
|
||||
|
||||
stairsplus.resources.sounds = {}
|
||||
|
||||
if stairsplus.has.default then
|
||||
table_set_all(stairsplus.resources.sounds, {
|
||||
wood = default.node_sound_wood_defaults(),
|
||||
})
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue