mirror of
https://github.com/luanti-org/minetest_game.git
synced 2025-06-04 21:10:04 -04:00
Creative: Extend search function to descriptions
This commit is contained in:
parent
09dbaf7972
commit
50fcc7a7d0
1 changed files with 2 additions and 1 deletions
|
@ -67,7 +67,8 @@ function creative.update_creative_inventory(player_name, filter, tab_id)
|
|||
for name, def in pairs(tab_category(tab_id)) do
|
||||
if not (def.groups.not_in_creative_inventory == 1) and
|
||||
def.description and def.description ~= "" and
|
||||
(not filter or def.name:find(filter, 1, true)) then
|
||||
(not filter or def.name:find(filter, 1, true) or
|
||||
def.description:lower():find(filter, 1, true)) then
|
||||
creative_list[#creative_list+1] = name
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Reference in a new issue