remove useless print

This commit is contained in:
camille lechauve 2023-09-03 20:46:02 +02:00
parent 982132c621
commit 136847609f

View File

@ -8,7 +8,6 @@ for i, dir in ipairs(dirs) do
tmp = tmp .. dir
if not file.Exists(tmp, "DATA")
then
print(tmp)
file.CreateDir(tmp)
end
tmp = tmp .. "/"
@ -16,7 +15,6 @@ end
if not file.Exists(config.config_path, "DATA")
then
print(config.config_path)
local default_config = {}
default_config.diseases = {}
file.Write(config.config_path, util.TableToJSON(default_config, true))