diff options
author | ShadowNinja <noreply@gmail.com> | 2013-09-02 19:44:18 -0400 |
---|---|---|
committer | ShadowNinja <noreply@gmail.com> | 2013-09-02 19:44:18 -0400 |
commit | 3d866330bf01409e5113ece322e500aaa095417a (patch) | |
tree | fbcda0a8536e484887e30731a1b80b56b52560b4 | |
parent | 4ae050a3ae13d5fc7a01b72fe2576508916e5145 (diff) |
Add more spaces in area desctiption strings
-rw-r--r-- | internal.lua | 4 |
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) |