From ccdb814d823d9d5107e5ebc400b46c77729ea355 Mon Sep 17 00:00:00 2001 From: Alex Vallee Date: Thu, 9 Apr 2020 14:38:42 -0400 Subject: [PATCH] Add documentation to the help command. --- findall.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/findall.lua b/findall.lua index 75477ac..0c639e5 100644 --- a/findall.lua +++ b/findall.lua @@ -272,12 +272,14 @@ function print_help() { ' [! [!...]]', '- the names of the characters to exclude from the search.' }, { ' []', '- the word you are looking for.' }, { ' [-e|--export=]', '- exports the results to a csv file in the data folder.' }, + { '/findall duplicates', '- searches for items that exist in more than 1 container.' }, } local examples = { { '/findall thaumas', '- Search for "thaumas" on all your characters.' }, { '/findall :alpha :beta thaumas', '- Search for "thaumas" on "alpha" and "beta" characters.' }, { '/findall :omega', '- Show all the items stored on "omega".' }, { '/findall !alpha thaumas', '- Search for "thaumas" on all your characters except "alpha".' }, + { '/findall duplicates :alpha bolt', '- Search for "bolts" that exist in more than 1 storage area on character "alpha".' }, } print('\31\200[\31\05' .. _addon.name .. '\31\200]\30\01' .. ' Version ' .. _addon.version)