From 136847609f2b97184910d6a2eda75b2891be362c Mon Sep 17 00:00:00 2001 From: camille lechauve Date: Sun, 3 Sep 2023 20:46:02 +0200 Subject: [PATCH] remove useless print --- lua/autorun/server/sv_config.lua | 2 -- 1 file changed, 2 deletions(-) diff --git a/lua/autorun/server/sv_config.lua b/lua/autorun/server/sv_config.lua index d0ad6b1..5f46175 100644 --- a/lua/autorun/server/sv_config.lua +++ b/lua/autorun/server/sv_config.lua @@ -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))