est31
2015-06-18 a793747d92d9b1d93153c7fb4e0c82fe90624c78
technic/config.lua
@@ -1,19 +1,14 @@
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",
}
for k, v in pairs(defaults) do
@@ -21,4 +16,3 @@
      technic.config:set(k, v)
   end
end