From 17a67b846e4296ea613bf0c996da28b89174cdd0 Mon Sep 17 00:00:00 2001 From: Arturas Norkus Date: Wed, 24 May 2017 08:27:27 +0300 Subject: [PATCH] fix optional lightning mod dependency issue --- init.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/init.lua b/init.lua index e59c0ef..249f92a 100644 --- a/init.lua +++ b/init.lua @@ -21,9 +21,9 @@ dofile(modpath.."/snow.lua") if minetest.get_modpath("lightning") ~= nil then dofile(modpath.."/thunder.lua") + + -- Turn off lightning mod 'auto mode' + lightning.auto = false end --- Turn off lightning mod 'auto mode' -lightning.auto = false - dofile(modpath.."/abm.lua")