summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWuzzy <almikes@aol.com>2016-08-21 00:25:10 +0200
committerWuzzy <almikes@aol.com>2016-08-21 00:25:10 +0200
commit8a70bb5b6f6c39b5a9f84f7d804446fd1824a3c9 (patch)
tree81a3241b914bd3b1ab4e22018d97010d5808f8e9
parentcdbd01a1bd88b618265d7d46bfa54650b3007ccb (diff)
Add newline after dropstring
-rw-r--r--init.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/init.lua b/init.lua
index 1242186..9e826d3 100644
--- a/init.lua
+++ b/init.lua
@@ -500,11 +500,11 @@ doc.new_category("nodes", {
local count = dropstack:get_count()
local finalstring
if count > 1 then
- finalstring = count .. " × "..desc
+ finalstring = count .. "×"..desc
else
finalstring = desc
end
- formstring = formstring .. "This block will drop the following when mined: "..finalstring
+ formstring = formstring .. "This block will drop the following when mined: "..finalstring.."\n"
end
elseif type(data.def.drop) == "table" and data.def.drop.items ~= nil then
local max = data.def.drop.max_items