diff options
| -rw-r--r-- | app.js | 12 |
1 files changed, 5 insertions, 7 deletions
@@ -149,16 +149,14 @@ bot.on('message', msg => { // Help
if (command == 'help') {
- msg.channel.send('Please Wait...').then(m => {
- m.edit(`** **`);
+
- let emb = new Discord.RichEmbed()
+ let emb = new Discord.RichEmbed()
- .setDescription(`The available commands are: ping, 8ball/ ball, say, server and help.`)
- .setColor(0xffd296);
+ .setDescription(`The available commands are: ping, 8ball/ ball, say, server and help.`)
+ .setColor(0xffd296);
- msg.channel.send(RichEmbed = emb);
- });
+ msg.channel.send(RichEmbed = emb);
}
} else if (msg.channel.name !== 'bots' && msg.content.startsWith(`${config.prefixes.main}`) && !msg.member.hasPermission('KICK_MEMBERS')) return;
})
|