Merge branch 'master' of https://github.com/theFox6/minetest_mod_weather
This commit is contained in:
commit
6985fdd198
|
@ -0,0 +1,8 @@
|
||||||
|
# Fast computer ABM
|
||||||
|
#
|
||||||
|
# The “fast computer ABM” controls if snow covers will be placed
|
||||||
|
# on the ground when `weather:snow` is set. This needs a better
|
||||||
|
# computer and should not be used if the performance drops too
|
||||||
|
# much. It is advised not to enable this on servers and it is
|
||||||
|
# disbaled by default
|
||||||
|
weather_fast_pc (Snow covers for fast PCs) bool false
|
|
@ -26,14 +26,16 @@ minetest.register_node("weather:snow_cover", {
|
||||||
drop = {}
|
drop = {}
|
||||||
})
|
})
|
||||||
|
|
||||||
--[[ Enable this section if you have a very fast PC
|
-- Snow cover ABM when weather_fast_pc setting is set to `true`
|
||||||
|
if minetest.is_yes(minetest.settings:get_bool('weather_fast_pc')) then
|
||||||
|
minetest.log('action', '[weather] Loaded fast computer ABM (snow covers when weather:snow is set)')
|
||||||
minetest.register_abm({
|
minetest.register_abm({
|
||||||
nodenames = {"group:crumbly", "group:snappy", "group:cracky", "group:choppy"},
|
nodenames = {"group:crumbly", "group:snappy", "group:cracky", "group:choppy"},
|
||||||
neighbors = {"default:air"},
|
neighbors = {"default:air"},
|
||||||
interval = 10.0,
|
interval = 10.0,
|
||||||
chance = 80,
|
chance = 80,
|
||||||
action = function (pos, node, active_object_count, active_object_count_wider)
|
action = function (pos, node)
|
||||||
if weather == "snow" then
|
if weather.type == "weather:snow" then
|
||||||
if minetest.registered_nodes[node.name].drawtype == "normal"
|
if minetest.registered_nodes[node.name].drawtype == "normal"
|
||||||
or minetest.registered_nodes[node.name].drawtype == "allfaces_optional" then
|
or minetest.registered_nodes[node.name].drawtype == "allfaces_optional" then
|
||||||
local np = vector.add(pos, {x=0, y=1, z=0})
|
local np = vector.add(pos, {x=0, y=1, z=0})
|
||||||
|
@ -45,4 +47,4 @@ minetest.register_abm({
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
})
|
})
|
||||||
]]
|
end
|
||||||
|
|
Loading…
Reference in New Issue