Add files via upload

This commit is contained in:
Anthony M 2021-01-23 18:08:47 -06:00 committed by GitHub
parent b3d9cd32de
commit b5cb18171e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

13
commands/stop.js Normal file
View file

@ -0,0 +1,13 @@
module.exports = {
name: 'stop',
description: '(Owner Only) Shuts down the bot.',
execute(client, message, args) {
if (message.author.id == 309427567004483586) {
message.channel.send("<a:NyabotWorking:697147309531594843> Shutting Down...").then
client.destroy()
.catch(console.error)
} else {
message.channel.send("<:NyabotDenied:697145462565896194> Access Denied, You must be bot owner to execute this command.");
}
}}