Do not set a default for description in itemdef table (#10559)
* Do not set a default for description in itemdef table * improve documentation
This commit is contained in:
parent
dcb1aab2d4
commit
ae7bdddf51
|
@ -118,11 +118,9 @@ function core.register_item(name, itemdef)
|
|||
end
|
||||
itemdef.name = name
|
||||
|
||||
-- default description to item name
|
||||
itemdef.description = itemdef.description or name
|
||||
-- default short_description to first line of description
|
||||
itemdef.short_description = itemdef.short_description or
|
||||
itemdef.description:gsub("\n.*","")
|
||||
(itemdef.description or ""):gsub("\n.*","")
|
||||
|
||||
-- Apply defaults and add to registered_* table
|
||||
if itemdef.type == "node" then
|
||||
|
|
Loading…
Reference in New Issue