don't copy default settings to user's world folder.

This commit is contained in:
Vanessa Ezekowitz 2015-08-15 17:15:08 -04:00
parent 2aad14a883
commit 1cd2216731
1 changed files with 2 additions and 15 deletions

View File

@ -24,21 +24,8 @@ local modpath=minetest.get_modpath("moretrees")
dofile(modpath.."/default_settings.txt")
if io.open(worldpath.."/moretrees_settings.txt","r") == nil then
io.input(modpath.."/default_settings.txt")
io.output(worldpath.."/moretrees_settings.txt")
local size = 2^13 -- good buffer size (8K)
while true do
local block = io.read(size)
if not block then
io.close()
break
end
io.write(block)
end
else
if io.open(worldpath.."/moretrees_settings.txt","r") then
io.close()
dofile(worldpath.."/moretrees_settings.txt")
end