From 66e20a9231b9fea823f9b683e495c57ef9a4ad41 Mon Sep 17 00:00:00 2001
From: sfence <sfence.software@gmail.com>
Date: Fri, 04 Nov 2022 19:23:44 +0100
Subject: [PATCH] Add register_cable_tier API function (#612)

---
 technic/tools/init.lua |   15 +++++++++++----
 1 files changed, 11 insertions(+), 4 deletions(-)

diff --git a/technic/tools/init.lua b/technic/tools/init.lua
index daa7727..5e0aa02 100644
--- a/technic/tools/init.lua
+++ b/technic/tools/init.lua
@@ -1,16 +1,23 @@
 local path = technic.modpath.."/tools"
 
-if technic.config:getBool("enable_mining_drill") then
+if technic.config:get_bool("enable_mining_drill") then
 	dofile(path.."/mining_drill.lua")
 end
-if technic.config:getBool("enable_mining_laser") then
-	dofile(path.."/mining_laser_mk1.lua")
+if technic.config:get_bool("enable_mining_laser") then
+	dofile(path.."/mining_lasers.lua")
 end
-if technic.config:getBool("enable_flashlight") then
+if technic.config:get_bool("enable_flashlight") then
 	dofile(path.."/flashlight.lua")
 end
 dofile(path.."/cans.lua")
 dofile(path.."/chainsaw.lua")
 dofile(path.."/tree_tap.lua")
 dofile(path.."/sonic_screwdriver.lua")
+dofile(path.."/prospector.lua")
+dofile(path.."/vacuum.lua")
+
+if minetest.get_modpath("screwdriver") then
+	-- compatibility alias
+	minetest.register_alias("technic:screwdriver", "screwdriver:screwdriver")
+end
 

--
Gitblit v1.8.0