This commit is contained in:
sloantothebone 2015-08-03 14:06:12 -06:00
parent b2195be046
commit 23cbc7ad84
2 changed files with 29 additions and 3 deletions

View File

@ -22,3 +22,26 @@ minetest.register_globalstep(function(dtime)
collisiondetection=false, vertical=true, texture="weather_rain.png", player=player:get_player_name()})
end
end)
-- Might want to comment this section out if you don't have a fast computer
if minetest.get_modpath("waterplus") then
minetest.register_abm({
nodenames = {"group:crumbly", "group:snappy", "group:cracky", "group:choppy"},
neighbors = {"default:air"},
interval = 10.0,
chance = 80,
action = function (pos, node, active_object_count, active_object_count_wider)
if weather == "rain" then
if minetest.registered_nodes[node.name].drawtype == "normal"
or minetest.registered_nodes[node.name].drawtype == "allfaces_optional" then
local np = addvectors(pos, {x=0, y=1, z=0})
if minetest.env:get_node_light(np, 0.5) == 15
and minetest.env:get_node(np).name == "air" then
minetest.env:add_node(np, {name="waterplus:finite_1"})
--minetest.env:add_node(np, {name="default:snow"}) --for carbone :)
end
end
end
end
})
end

View File

@ -51,6 +51,8 @@ minetest.register_node("weather:snow_cover", {
drop = {}
})
--[[ Enable this section if you have a very fast PC
minetest.register_abm({
nodenames = {"group:crumbly", "group:snappy", "group:cracky", "group:choppy"},
@ -64,10 +66,11 @@ minetest.register_abm({
local np = addvectors(pos, {x=0, y=1, z=0})
if minetest.env:get_node_light(np, 0.5) == 15
and minetest.env:get_node(np).name == "air" then
minetest.env:add_node(np, {name="weather:snow_cover"})
--minetest.env:add_node(np, {name="weather:snow_cover"})
minetest.env:add_node(np, {name="default:snow"})
end
end
end
end
})
]]
})]]