spacepaste
new
Paste details
reply
|
raw
-- this is an init.lua to fix the weather:snow_cover blocks
minetest.register_lbm({
name = "blaise:remove_snow",
nodenames = {"weather:snow_cover"},
run_at_every_load=false
action = function(pos, node)
minetest.set_node(pos, {name = "air"})
end,
})