1
0
mirror of https://github.com/mt-mods/moretrees.git synced 2025-06-30 23:20:45 +02:00

fixup! Add date palm

Some textual improvements
This commit is contained in:
Rogier
2016-07-01 11:11:45 +02:00
parent 9dd610e0e6
commit 9028366407
2 changed files with 11 additions and 4 deletions

View File

@ -285,11 +285,11 @@ end
local function dates_print_search_stats(log)
local stats
if sect_search_stats.count > 0 then
stats = string.format("Male date tree searching stats: count: %d/%d: average: %d µs (%d..%d)",
stats = string.format("Male date tree searching stats: searches: %d/%d: average: %d µs (%d..%d)",
sect_search_stats.count, sect_search_stats.count + sect_search_stats.skip,
sect_search_stats.sum/sect_search_stats.count, sect_search_stats.min, sect_search_stats.max)
else
stats = string.format("Male date tree searching stats: (not yet available)")
stats = string.format("Male date tree searching stats: searches: 0/0: average: (no searches yet)")
end
if log then
minetest.log("action", "[moretrees] " .. stats)