mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-22 15:33:00 +00:00
node_distribution: add missing \n
This commit is contained in:
parent
810d3049ee
commit
624abc899b
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ function worldeditadditions.format.node_distribution(distribution, nodes_total,
|
|||
local result = worldeditadditions.format.make_ascii_table(distribution_data)
|
||||
|
||||
if add_total == true then
|
||||
result = result..string.rep("=", 6 + #tostring(nodes_total) + 6).."\n"..
|
||||
result = result.."\n"..string.rep("=", 6 + #tostring(nodes_total) + 6).."\n"..
|
||||
"Total "..nodes_total.." nodes\n"
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue