add woolsound to moreblocks registrations
also fix typo
This commit is contained in:
parent
8ca8c0088e
commit
2076d42140
@ -9,6 +9,7 @@ building_blocks ?
|
|||||||
teleport_potion ?
|
teleport_potion ?
|
||||||
scaffolding ?
|
scaffolding ?
|
||||||
moreores ?
|
moreores ?
|
||||||
|
moreblocks ?
|
||||||
mobs_animal ?
|
mobs_animal ?
|
||||||
mobs_better_rat ?
|
mobs_better_rat ?
|
||||||
mobs_slimes ?
|
mobs_slimes ?
|
||||||
|
4
init.lua
4
init.lua
@ -1,6 +1,7 @@
|
|||||||
illuna = {}
|
illuna = {}
|
||||||
|
|
||||||
dofile(minetest.get_modpath("illuna").."/nodes.lua")
|
dofile(minetest.get_modpath("illuna").."/nodes.lua")
|
||||||
|
dofile(minetest.get_modpath("illuna").."/moreblocks.lua")
|
||||||
dofile(minetest.get_modpath("illuna").."/crafting.lua")
|
dofile(minetest.get_modpath("illuna").."/crafting.lua")
|
||||||
dofile(minetest.get_modpath("illuna").."/commands.lua")
|
dofile(minetest.get_modpath("illuna").."/commands.lua")
|
||||||
dofile(minetest.get_modpath("illuna").."/register.lua")
|
dofile(minetest.get_modpath("illuna").."/register.lua")
|
||||||
@ -10,9 +11,6 @@ dofile(minetest.get_modpath("illuna").."/shop.lua")
|
|||||||
dofile(minetest.get_modpath("illuna").."/stairs.lua")
|
dofile(minetest.get_modpath("illuna").."/stairs.lua")
|
||||||
dofile(minetest.get_modpath("illuna").."/hotstone.lua")
|
dofile(minetest.get_modpath("illuna").."/hotstone.lua")
|
||||||
dofile(minetest.get_modpath("illuna").."/replacer.lua")
|
dofile(minetest.get_modpath("illuna").."/replacer.lua")
|
||||||
if minetest.get_modpath("moreblocks") then
|
|
||||||
dofile(minetest.get_modpath("illuna").."/moreblocks.lua")
|
|
||||||
end
|
|
||||||
if not minetest.get_modpath("ethereal") then
|
if not minetest.get_modpath("ethereal") then
|
||||||
dofile(minetest.get_modpath("illuna").."/water.lua")
|
dofile(minetest.get_modpath("illuna").."/water.lua")
|
||||||
end
|
end
|
||||||
|
@ -64,10 +64,10 @@ for i = 1, 16 do
|
|||||||
description = name.." Wool",
|
description = name.." Wool",
|
||||||
tiles = {"wool_"..name..".png"},
|
tiles = {"wool_"..name..".png"},
|
||||||
groups = {oddly_breakabe_by_hand=1},
|
groups = {oddly_breakabe_by_hand=1},
|
||||||
sounds = default.node_sound_defaults(),
|
sounds = illuna.node_sound_wool(),
|
||||||
})
|
})
|
||||||
minetest.register_alias(name..":slab_block_1", "moreblocks:slab_wool_"..name)
|
minetest.register_alias(name..":slab_block_1", "moreblocks:slab_wool_"..name.."_1")
|
||||||
minetest.register_alias(name..":slab_block_2", "moreblocks:slab_wool_"..name)
|
minetest.register_alias(name..":slab_block_2", "moreblocks:slab_wool_"..name.."_2")
|
||||||
end
|
end
|
||||||
minetest.register_alias("wool:white_microslab", "moreblocks:slab_wool_white")
|
minetest.register_alias("wool:white_microslab", "moreblocks:slab_wool_white")
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user