From f1fcbef473dad6eb7050e4ea930adb80b5eacbd2 Mon Sep 17 00:00:00 2001 From: carol <34490428+rhearmas@users.noreply.github.com> Date: Mon, 27 Jan 2020 10:33:25 -0800 Subject: [PATCH] grammar update --- commands/_base.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/commands/_base.js b/commands/_base.js index 0676db4..5cc0bfc 100644 --- a/commands/_base.js +++ b/commands/_base.js @@ -1,6 +1,6 @@ /* -This file is ignored by the bot's command loader because of the underscore at the start of the file name. No need to worry about loading errors. -Use the list of export functions in your custom commands to get a headstart on making your commands. All theee exports are required, or the command won't load. +This file is ignored by the bot's command loader because of the underscore at the start of the file name. The purpose of this file is for developers to get a headstart on implementing their own commands. +Developers, remember to insert all three exports; these are required. Your command won't load if any of these are missing. */ exports.run = async (client, message, args, level) => { @@ -25,4 +25,4 @@ exports.help = { if (!args[0]) { message.delete(); return (await message.reply("text")).delete(5000).catch(() => { }); -} \ No newline at end of file +}