mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2024-11-05 12:23:09 +02:00
Update index.js
This commit is contained in:
parent
d2dc415f5a
commit
91e1e150a9
21
index.js
21
index.js
@ -178,13 +178,24 @@ client.on('message', message => {
|
||||
if (!command) return;
|
||||
|
||||
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) {
|
||||
reply += `\n**Usage:** \`${config.prefix}${command.name} ${command.usage}\``;
|
||||
} else {
|
||||
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);
|
||||
};
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user