summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShadowNinja <noreply@gmail.com>2013-09-02 19:44:18 -0400
committerShadowNinja <noreply@gmail.com>2013-09-02 19:44:18 -0400
commit3d866330bf01409e5113ece322e500aaa095417a (patch)
treefbcda0a8536e484887e30731a1b80b56b52560b4
parent4ae050a3ae13d5fc7a01b72fe2576508916e5145 (diff)
Add more spaces in area desctiption strings
-rw-r--r--internal.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal.lua b/internal.lua
index 41a0497..2fee018 100644
--- a/internal.lua
+++ b/internal.lua
@@ -133,8 +133,8 @@ end
-- Given a area returns a string in the format "name [id]: owner (x1, y1, z1) (x2, y2, z2) -> children"
function areas:toString(area)
local message = area.name..
- "["..area.id.."]: "..area.owner..
- minetest.pos_to_string(area.pos1)..
+ " ["..area.id.."]: "..area.owner.." "..
+ minetest.pos_to_string(area.pos1).." "..
minetest.pos_to_string(area.pos2)
local children = areas:getChildren(id)