From a9b10cc4b10110a9c54bd03ac07eea3151b10ede Mon Sep 17 00:00:00 2001
From: mat9117 <49096572+mat9117@users.noreply.github.com>
Date: Sun, 14 Apr 2019 11:43:30 +0200
Subject: [PATCH] Fix Polish translation (#497)

---
 technic/config.lua |   20 +++++++++-----------
 1 files changed, 9 insertions(+), 11 deletions(-)

diff --git a/technic/config.lua b/technic/config.lua
index 159302f..bb748ec 100644
--- a/technic/config.lua
+++ b/technic/config.lua
@@ -1,19 +1,18 @@
-
-local worldpath = minetest.get_worldpath()
-
-technic.config = Settings(worldpath.."/technic.conf")
+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 = "true",
-	enable_item_drop = "true",
-	enable_item_pickup = "true",
-	enable_rubber_tree_generation = "true",
-	enable_marble_generation = "true",
-	enable_granite_generation = "true",
+	enable_flashlight = "false",
+	enable_wind_mill = "false",
+	enable_frames = "false",
+	enable_corium_griefing = "true",
+	enable_radiation_protection = "true",
+	enable_entity_radiation_damage = "true",
+	enable_longterm_radiation_damage = "true",
+	enable_nuclear_reactor_digiline_selfdestruct = "false",
 }
 
 for k, v in pairs(defaults) do
@@ -21,4 +20,3 @@
 		technic.config:set(k, v)
 	end
 end
-

--
Gitblit v1.8.0