mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-05 07:41:06 +01:00
14 lines
393 B
Lua
14 lines
393 B
Lua
|
local modpath = minetest.get_modpath("weather_pack");
|
||
|
dofile(modpath.."/weather_core.lua")
|
||
|
dofile(modpath.."/snow.lua")
|
||
|
dofile(modpath.."/rain.lua")
|
||
|
|
||
|
if minetest.get_modpath("lightning") ~= nil then
|
||
|
dofile(modpath.."/thunder.lua")
|
||
|
end
|
||
|
|
||
|
-- If not located then embeded skycolor mod version will be loaded.
|
||
|
if minetest.get_modpath("skycolor") == nil then
|
||
|
dofile(modpath.."/skycolor.lua")
|
||
|
end
|