remove useless print
This commit is contained in:
parent
982132c621
commit
136847609f
@ -8,7 +8,6 @@ for i, dir in ipairs(dirs) do
|
|||||||
tmp = tmp .. dir
|
tmp = tmp .. dir
|
||||||
if not file.Exists(tmp, "DATA")
|
if not file.Exists(tmp, "DATA")
|
||||||
then
|
then
|
||||||
print(tmp)
|
|
||||||
file.CreateDir(tmp)
|
file.CreateDir(tmp)
|
||||||
end
|
end
|
||||||
tmp = tmp .. "/"
|
tmp = tmp .. "/"
|
||||||
@ -16,7 +15,6 @@ end
|
|||||||
|
|
||||||
if not file.Exists(config.config_path, "DATA")
|
if not file.Exists(config.config_path, "DATA")
|
||||||
then
|
then
|
||||||
print(config.config_path)
|
|
||||||
local default_config = {}
|
local default_config = {}
|
||||||
default_config.diseases = {}
|
default_config.diseases = {}
|
||||||
file.Write(config.config_path, util.TableToJSON(default_config, true))
|
file.Write(config.config_path, util.TableToJSON(default_config, true))
|
||||||
|
Loading…
Reference in New Issue
Block a user