From d452d16fa6a0364e0c8e171a4b333d6b85e0c519 Mon Sep 17 00:00:00 2001
From: est31 <MTest31@outlook.com>
Date: Tue, 03 Feb 2015 07:43:58 +0100
Subject: [PATCH] Make technic chests independent from unified inventory

---
 technic/config.lua |   17 +++++++++++++++++
 1 files changed, 17 insertions(+), 0 deletions(-)

diff --git a/technic/config.lua b/technic/config.lua
new file mode 100644
index 0000000..e512bee
--- /dev/null
+++ b/technic/config.lua
@@ -0,0 +1,17 @@
+technic.config = technic.config or Settings(minetest.get_worldpath().."/technic.conf")
+
+local conf_table = technic.config:to_table()
+
+local defaults = {
+	enable_mining_drill = "true",
+	enable_mining_laser = "true",
+	enable_flashlight = "false",
+	enable_wind_mill = "false",
+	enable_corium_griefing = "true",
+}
+
+for k, v in pairs(defaults) do
+	if conf_table[k] == nil then
+		technic.config:set(k, v)
+	end
+end

--
Gitblit v1.8.0