Update index.js

This commit is contained in:
Eartharoid 2019-05-04 12:37:39 +01:00
parent d2dc415f5a
commit 91e1e150a9

View File

@ -178,13 +178,24 @@ client.on('message', message => {
if (!command) return; if (!command) return;
if (command.args && !args.length) { if (command.args && !args.length) {
let reply = `:x: **Arguments were expected but none were provided.**`; // let reply = `:x: **Arguments were expected but none were provided.**`;
//
// if (command.usage) {
// reply += `\n**Usage:** \`${config.prefix}${command.name} ${command.usage}\``;
// }
//
// return message.channel.send(reply);
if (config.useEmbeds) {
const embed = new Discord.RichEmbed()
.setAuthor(`${client.user.username}`, client.user.avatarURL)
.setColor("#E74C3C")
.setDescription(`\n**Usage:** \`${config.prefix}${command.name} ${command.usage}\`\nType \`${config.prefix}help ${command.name}\` for more information`)
.setFooter(`${client.guilds.get(config.guildID).name} : DiscordTickets by Eartharoid`);
return message.channel.send({embed})
if (command.usage) { } else {
reply += `\n**Usage:** \`${config.prefix}${command.name} ${command.usage}\``; return message.channel.send(`**Usage:** \`${config.prefix}${command.name} ${command.usage}\`\nType \`${config.prefix}help ${command.name}\` for more information`)
} }
return message.channel.send(reply);
}; };