forked from minetest-mods/technic
Disable wind mill by default because it isn't ready yet
This commit is contained in:
parent
a579ee829a
commit
363f033278
@ -12,6 +12,7 @@ local defaults = {
|
|||||||
enable_rubber_tree_generation = "true",
|
enable_rubber_tree_generation = "true",
|
||||||
enable_marble_generation = "true",
|
enable_marble_generation = "true",
|
||||||
enable_granite_generation = "true",
|
enable_granite_generation = "true",
|
||||||
|
enable_wind_mill = "false",
|
||||||
}
|
}
|
||||||
|
|
||||||
for k, v in pairs(defaults) do
|
for k, v in pairs(defaults) do
|
||||||
|
@ -10,7 +10,9 @@ dofile(path.."/electric_furnace.lua")
|
|||||||
dofile(path.."/grinder.lua")
|
dofile(path.."/grinder.lua")
|
||||||
dofile(path.."/solar_array.lua")
|
dofile(path.."/solar_array.lua")
|
||||||
dofile(path.."/tool_workshop.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:
|
-- The power radiator supplies appliances with inductive coupled power:
|
||||||
-- Lighting and associated textures is taken directly from VanessaE's homedecor and made electric.
|
-- Lighting and associated textures is taken directly from VanessaE's homedecor and made electric.
|
||||||
|
Loading…
Reference in New Issue
Block a user