diff options
author | ubq323 <ubq323@ubq323.website> | 2023-02-13 13:05:55 +0000 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2023-02-13 13:05:55 +0000 |
commit | 7e0a520f8efd748a13c277b3c39514aee07c74d2 (patch) | |
tree | ba92438a2c2008103bb5af6acb0e01538fa15dce /server/server.lua | |
parent | 0abc0b9b7928cd72b1c92b3af9f30674397013d1 (diff) |
change blank and ubqorange tiles from false and true to 0 and 9
Diffstat (limited to 'server/server.lua')
-rw-r--r-- | server/server.lua | 4 |
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 |