mirror of
https://gitlab.com/rautars/weather_pack.git
synced 2024-11-15 23:00:18 +01:00
13 lines
325 B
Lua
13 lines
325 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 minetest.get_modpath("skycolor") == nil then
|
||
|
dofile(modpath.."/skycolor.lua")
|
||
|
end
|