diff --git a/commands/search.js b/commands/search.js index e72e781..442c4a8 100644 --- a/commands/search.js +++ b/commands/search.js @@ -21,6 +21,8 @@ const page = (punishments, message, user) => { }; exports.run = async (client, message, args) => { + if (await client.helpArgs(client, message, args, exports)) return; + const requiredPermissions = [ "ADD_REACTIONS", "MANAGE_MESSAGES", @@ -77,4 +79,4 @@ exports.help = { exports.conf = { permission: "READ_MESSAGES" -} \ No newline at end of file +}