Vanessa Ezekowitz
2014-08-15 772c21cb04f647bcd9a75e06162db9db185e499d
technic/config.lua
@@ -1,19 +1,13 @@
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_corium_griefing = "true",
}
for k, v in pairs(defaults) do
@@ -21,4 +15,3 @@
      technic.config:set(k, v)
   end
end