From e1bdb05eacdc87d2734a19d42d2ac7c30af54b97 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Tue, 19 Jul 2016 17:55:38 +0200 Subject: Tweak output --- init.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'init.lua') diff --git a/init.lua b/init.lua index 63a2295..f6b3b52 100644 --- a/init.lua +++ b/init.lua @@ -238,7 +238,7 @@ doc.new_category("nodes", { formstring = formstring .. "This block is made out of flesh.\n" end - formstring = formstring .. "\n\n" + formstring = formstring .. "\n" -- Show other “exposable” groups local gstring = groups_to_string(data.def.groups) @@ -250,7 +250,7 @@ doc.new_category("nodes", { -- Show fuel recipe local result = minetest.get_craft_result({method = "fuel", items = {data.itemstring}}) if result ~= nil and result.time > 0 then - formstring = formstring .. "This block can serve as a fuel with a burning time of "..burntime_to_text(result.time)..".\n" + formstring = formstring .. "This block can serve as a smelting fuel with a burning time of "..burntime_to_text(result.time)..".\n" end @@ -311,7 +311,7 @@ doc.new_category("tools", { -- Show fuel recipe local result = minetest.get_craft_result({method = "fuel", items = {data.itemstring}}) if result ~= nil and result.time > 0 then - formstring = formstring .. "This tool can serve as a fuel with a burning time of "..burntime_to_text(result.time)..".\n" + formstring = formstring .. "This tool can serve as a smelting fuel with a burning time of "..burntime_to_text(result.time)..".\n" end formstring = formstring .. ";]" @@ -372,7 +372,7 @@ doc.new_category("craftitems", { -- Show fuel recipe local result = minetest.get_craft_result({method = "fuel", items = {data.itemstring}}) if result ~= nil and result.time > 0 then - formstring = formstring .. "This item can serve as a fuel with a burning time of "..burntime_to_text(result.time)..".\n" + formstring = formstring .. "This item can serve as a smelting fuel with a burning time of "..burntime_to_text(result.time)..".\n" end formstring = formstring .. ";]" -- cgit v1.2.3