From 0c5cc5b619c301e28a53ce0efb765157c81e41c8 Mon Sep 17 00:00:00 2001 From: Carol Knieriem Date: Mon, 13 Jan 2020 09:48:54 -0500 Subject: [PATCH] describe file --- commands/_base.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/commands/_base.js b/commands/_base.js index 4838842..0676db4 100644 --- a/commands/_base.js +++ b/commands/_base.js @@ -1,3 +1,8 @@ +/* +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. +*/ + exports.run = async (client, message, args, level) => { };