Add files via upload

This commit is contained in:
Fernando Méndez 2021-03-12 10:38:24 +01:00 committed by GitHub
parent ea06863170
commit 5470613df0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -78,6 +78,11 @@ client.on('message', message => {
message.channel.send(`Pong 🏓`);
}
}
if(message.content.startsWith(prefix + 'autor') || message.content.startsWith(prefix + 'author')){
message.channel.send("Autor👤: *Fernando Méndez 'Humpercobra'* \n" +
"Web🌐: https://fermdez.ddns.net", {parse_mode : "Markdown"});
}
});
client.login(config.BOT_TOKEN);