mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-02 14:31:05 +01:00
17 lines
454 B
Lua
17 lines
454 B
Lua
local modpath = minetest.get_modpath(minetest.get_current_modname())
|
|
|
|
mcl_weather = {}
|
|
|
|
-- If not located then embeded skycolor mod version will be loaded.
|
|
if minetest.get_modpath("skycolor") == nil then
|
|
dofile(modpath.."/skycolor.lua")
|
|
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
|