minetest_mod_weather/weather/init.lua

12 lines
340 B
Lua
Raw Permalink Normal View History

assert(minetest.add_particlespawner, "Weather doesn't work with this really old minetest.")
2013-03-24 14:40:18 +01:00
weather = {
modpath = minetest.get_modpath("weather"),
2018-05-17 17:07:41 +02:00
}
2018-04-29 17:22:05 +02:00
dofile(weather.modpath.."/api.lua")
dofile(weather.modpath.."/rain.lua")
dofile(weather.modpath.."/sand.lua")
dofile(weather.modpath.."/snow.lua")
dofile(weather.modpath.."/command.lua")