Update to doc_items 1.1.1

This commit is contained in:
Wuzzy 2017-05-30 13:06:03 +02:00
parent 53b5754359
commit 4f51af2ebc
2 changed files with 2 additions and 3 deletions

View File

@ -1,4 +1,4 @@
# Item Help [`doc_items`] (Version 1.1.0)
# Item Help [`doc_items`] (Version 1.1.1)
## Description
Automatically generated help texts of blocks, tools, weapons, crafting
items and other items.

View File

@ -592,10 +592,9 @@ doc.add_category("nodes", {
formstring = entry_image(data)
datastring = factoids_header(data, "nodes")
local liquid = data.def.liquidtype ~= "none"
if not forbidden_core_factoids.basics then
datastring = datastring .. S("Collidable: @1", yesno(data.def.walkable)) .. "\n"
local liquid
if data.def.liquidtype ~= "none" then liquid = true else liquid = false end
if data.def.pointable == true then
datastring = datastring .. S("Pointable: Yes") .. "\n"
elseif liquid then