summaryrefslogtreecommitdiff
path: root/server/server.lua
diff options
context:
space:
mode:
Diffstat (limited to 'server/server.lua')
-rw-r--r--server/server.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/server.lua b/server/server.lua
index 88f4efe..85112c9 100644
--- a/server/server.lua
+++ b/server/server.lua
@@ -174,11 +174,11 @@ end
local function tick(ntick)
if ntick % 30 == 0 then
- print("saving things")
+ -- print("saving things")
for cp,ch in map:iter_chunks() do
map:save_chunk(cp)
if not player_near_chunk(cp) then
- print("unloading chunk",cp)
+ -- print("unloading chunk",cp)
map:remove_chunk(cp)
end
end