Creative: Extend search function to descriptions

This commit is contained in:
Muhammad Rifqi Priyo Susanto 2016-02-04 17:24:14 +07:00 committed by paramat
parent 5994ac8dc5
commit 9e54b379c8
1 changed files with 2 additions and 1 deletions

View File

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