-- this is an init.lua to fix the weather:snow_cover blocks minetest.register_lbm({ name = "blaise:remove_snow", nodenames = {"weather:snow_cover"}, action = function(pos, node) minetest.set_node(pos, {name = "air"}) end, })