diff options
author | Wuzzy <almikes@aol.com> | 2016-07-19 17:55:38 +0200 |
---|---|---|
committer | Wuzzy <almikes@aol.com> | 2016-07-19 17:55:38 +0200 |
commit | e1bdb05eacdc87d2734a19d42d2ac7c30af54b97 (patch) | |
tree | ec566cea883496302dbcc603875965246c744203 | |
parent | f87ed72eb2367eb1aa91c199bbf32d37fd2ef25a (diff) |
Tweak output
-rw-r--r-- | init.lua | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 .. ";]" |