don't write pipeworks config file anymore. if a user needs one, they can

create it themselves :-)
This commit is contained in:
Vanessa Ezekowitz 2013-12-17 20:27:46 -05:00
parent 41ce9be8f3
commit dfed550cae
1 changed files with 1 additions and 16 deletions

View File

@ -17,22 +17,7 @@ pipeworks.modpath = minetest.get_modpath("pipeworks")
dofile(pipeworks.modpath.."/default_settings.txt")
if io.open(pipeworks.worldpath.."/pipeworks_settings.txt","r") == nil then
io.input(pipeworks.modpath.."/default_settings.txt")
io.output(pipeworks.worldpath.."/pipeworks_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(pipeworks.worldpath.."/pipeworks_settings.txt","r") ~= nil then
dofile(pipeworks.worldpath.."/pipeworks_settings.txt")
end