add woolsound to moreblocks registrations

also fix typo
This commit is contained in:
Milan* 2017-09-18 18:48:47 +02:00
parent 8ca8c0088e
commit 2076d42140
3 changed files with 5 additions and 6 deletions

View File

@ -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 ?

View File

@ -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

View File

@ -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")