VoxeLibre/mods/ENVIRONMENT/mcl_weather/init.lua

18 lines
454 B
Lua
Raw Normal View History

local modpath = minetest.get_modpath(minetest.get_current_modname())
2017-12-08 17:06:21 +01:00
mcl_weather = {}
-- If not located then embeded skycolor mod version will be loaded.
if minetest.get_modpath("skycolor") == nil then
dofile(modpath.."/skycolor.lua")
2017-12-08 17:06:21 +01:00
end
dofile(modpath.."/weather_core.lua")
dofile(modpath.."/snow.lua")
dofile(modpath.."/rain.lua")
dofile(modpath.."/nether_dust.lua")
if minetest.get_modpath("lightning") then
dofile(modpath.."/thunder.lua")
end