fixed lightning crash

This commit is contained in:
theFox6 2018-05-17 13:43:44 +02:00
parent ef480be291
commit 3ec25f8eee
1 changed files with 3 additions and 1 deletions

View File

@ -90,7 +90,9 @@ minetest.register_globalstep(function()
else
if math.random(1, 10000) == 1 then
weather.type = "none"
lightning.auto = false
if minetest.get_modpath("lightning") then
lightning.auto = false
end
end
end
local current_downfall = weather_mod.registered_downfalls[weather.type]