forked from Minetest/dynamic_liquid
Add everness mineral water as dynamic liquid
parent
7bdc95c60a
commit
3cbeab5899
|
@ -0,0 +1,15 @@
|
|||
local water_probability = dynamic_liquid.config.water_probability
|
||||
|
||||
if dynamic_liquid.config.water then
|
||||
-- mineral water is already not renewable,
|
||||
-- so it is not necessary to override it
|
||||
local override_def = {liquid_renewable = false}
|
||||
minetest.override_item("everness:mineral_water_source", override_def)
|
||||
minetest.override_item("everness:mineral_water_flowing", override_def)
|
||||
|
||||
dynamic_liquid.liquid_abm(
|
||||
"everness:mineral_water_source",
|
||||
"everness:mineral_water_flowing",
|
||||
water_probability
|
||||
)
|
||||
end
|
4
init.lua
4
init.lua
|
@ -56,3 +56,7 @@ end
|
|||
if minetest.get_modpath("mcl_core") then
|
||||
dofile(modpath.."/mineclone.lua")
|
||||
end
|
||||
|
||||
if minetest.get_modpath("everness") then
|
||||
dofile(modpath.."/everness.lua")
|
||||
end
|
||||
|
|
2
mod.conf
2
mod.conf
|
@ -1,3 +1,3 @@
|
|||
name = dynamic_liquid
|
||||
optional_depends = default, doc, xpanes, carts, mcl_core, mclx_core, mcl_mapgen_core, mcl_mapgen
|
||||
optional_depends = default, doc, xpanes, carts, mcl_core, mclx_core, mcl_mapgen_core, mcl_mapgen, everness
|
||||
description = Flowing dynamic liquids and ocean-maintenance springs.
|
Loading…
Reference in New Issue