spacepaste

  1.  
  2. -- this is an init.lua to fix the weather:snow_cover blocks
  3. minetest.register_lbm({
  4. name = "blaise:remove_snow",
  5. nodenames = {"weather:snow_cover"},
  6. action = function(pos, node)
  7. minetest.set_node(pos, {name = "air"})
  8. end,
  9. })
  10.