1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-07-22 17:18:39 +00:00

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:
DS 2020-11-10 21:03:10 +01:00 committed by GitHub
parent fca4db4184
commit be3fe161fc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 8 deletions

View file

@ -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