Fix craft of dye:light_grey and decrease bats sound volume

This commit is contained in:
sys4-fr 2018-03-10 00:33:32 +01:00
parent 925285e888
commit 6c1ad3ab5a
4 changed files with 19 additions and 2 deletions

View File

@ -126,7 +126,7 @@ local swimming_frequent = {
local cave = {
handler = {},
frequency = cave_frequency,
{name="Bats_in_Cave", length=5, gain=cave_volume}
{name="Bats_in_Cave", length=5, gain=cave_volume*0.5}
}
local cave_frequent = {

15
mods/nalc/bakedclay.lua Normal file
View File

@ -0,0 +1,15 @@
-- If bakedclay loaded then remove "dye:grey 3" craft recipe
-- in order to avoid unifieddyes conflict
if minetest.get_modpath("unifieddyes") then
minetest.clear_craft(
{
output = "dye:grey"
})
minetest.register_craft(
{
type = "shapeless",
output = "dye:grey 2",
recipe = {"dye:black", "dye:white"}
})
end

View File

@ -27,3 +27,4 @@ mobs_monster?
minercantile?
diet?
homedecor?
bakedclay?

View File

@ -25,7 +25,8 @@ local mods =
"nyancat", "moreores", "moreblocks",
"bonemeal", "maptools", "doors",
"flowers", "carts", "nether",
"mobs_animal", "minercantile", "diet"
"mobs_animal", "minercantile", "diet",
"bakedclay"
}
for _,mod in ipairs(mods) do