grammar update

This commit is contained in:
carol 2020-01-27 10:33:25 -08:00 committed by GitHub
parent 0c5cc5b619
commit f1fcbef473
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -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(() => { });
}
}