added emoji command

This commit is contained in:
SileNce5k 2021-02-14 20:07:21 +01:00
parent 05b96f7eb6
commit a6ce102e05
No known key found for this signature in database
GPG key ID: C507260E7F2583AD
2 changed files with 1 additions and 4 deletions

View file

@ -20,9 +20,6 @@ module.exports = {
for (const file of commandFiles) {
const command = require(`./${file}`);
embed.addFields(
{ name: prefix+command.name, value: command.description },
)

View file

@ -40,7 +40,7 @@ client.on('message', async message => {
try {
if (commandName == "ban" || commandName == "userinfo" || commandName == "botinfo") {
command.execute(message, client);
} else if (commandName == "say") {
} else if (commandName == "say" || commandName == "e") {
command.execute(message, args)
}
else {