mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-22 23:42:59 +00:00
//subdivide: tweak outut
This commit is contained in:
parent
9dffb17f3d
commit
ac954abaea
1 changed files with 1 additions and 1 deletions
|
@ -120,7 +120,7 @@ worldedit.register_command("subdivide", {
|
||||||
msg_prefix,
|
msg_prefix,
|
||||||
stats.chunks_completed, stats.chunks_total,
|
stats.chunks_completed, stats.chunks_total,
|
||||||
(stats.chunks_completed / stats.chunks_total) * 100,
|
(stats.chunks_completed / stats.chunks_total) * 100,
|
||||||
wea.human_time(stats.times.step_last),
|
wea.human_time(math.floor(stats.times.step_last)), -- the time is an integer anyway because precision
|
||||||
wea.human_time(wea.average(stats.times.steps)),
|
wea.human_time(wea.average(stats.times.steps)),
|
||||||
stats.emerge_overhead * 100,
|
stats.emerge_overhead * 100,
|
||||||
wea.human_time(stats.eta)
|
wea.human_time(stats.eta)
|
||||||
|
|
Loading…
Reference in a new issue