Disable wind mill by default because it isn't ready yet

This commit is contained in:
ShadowNinja 2013-10-06 12:41:48 -04:00
parent a579ee829a
commit 363f033278
2 changed files with 4 additions and 1 deletions

@ -12,6 +12,7 @@ local defaults = {
enable_rubber_tree_generation = "true",
enable_marble_generation = "true",
enable_granite_generation = "true",
enable_wind_mill = "false",
}
for k, v in pairs(defaults) do

@ -10,7 +10,9 @@ dofile(path.."/electric_furnace.lua")
dofile(path.."/grinder.lua")
dofile(path.."/solar_array.lua")
dofile(path.."/tool_workshop.lua")
dofile(path.."/wind_mill.lua")
if technic.config:get_bool("enable_wind_mill") then
dofile(path.."/wind_mill.lua")
end
-- The power radiator supplies appliances with inductive coupled power:
-- Lighting and associated textures is taken directly from VanessaE's homedecor and made electric.