diff --git a/technic/tools/init.lua b/technic/tools/init.lua index 2fbcaddd..98cf9092 100644 --- a/technic/tools/init.lua +++ b/technic/tools/init.lua @@ -1,6 +1,5 @@ local path = technic.modpath.."/tools" local mesecons_materials = minetest.get_modpath("mesecons_materials") -local has_mcl = minetest.get_modpath("mcl_core") local function enabled(name) return technic.config:get_bool("enable_" .. name) @@ -12,7 +11,7 @@ if enabled("flashlight") then dofile(path.."/flashlight.lua") end if enabled("cans") then dofile(path.."/cans.lua") end if enabled("chainsaw") then dofile(path.."/chainsaw.lua") end if enabled("tree_tap") then dofile(path.."/tree_tap.lua") end -if enabled("sonic_screwdriver") and mesecons_materials and not has_mcl then dofile(path.."/sonic_screwdriver.lua") end +if enabled("sonic_screwdriver") and mesecons_materials then dofile(path.."/sonic_screwdriver.lua") end if enabled("prospector") then dofile(path.."/prospector.lua") end if enabled("vacuum") then dofile(path.."/vacuum.lua") end if enabled("multimeter") then dofile(path.."/multimeter.lua") end