mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-13 05:50:31 +01:00
Fix craft of dye:light_grey and decrease bats sound volume
This commit is contained in:
parent
925285e888
commit
6c1ad3ab5a
|
@ -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
15
mods/nalc/bakedclay.lua
Normal 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
|
|
@ -27,3 +27,4 @@ mobs_monster?
|
|||
minercantile?
|
||||
diet?
|
||||
homedecor?
|
||||
bakedclay?
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user