From fe7729675767c46bcc1232618d47ac90fdfb0c19 Mon Sep 17 00:00:00 2001 From: Quinndoe12 <55562296+Quinndoe12@users.noreply.github.com> Date: Thu, 19 Sep 2019 20:42:17 -0500 Subject: [PATCH] missing helpArgs function ln 24 --- commands/search.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 +}