Expectation: The bot deletes the user command and replies
Result: The bot replies but does not delete the user command
bot.on('message', msg => {
// Broken
if(msg.content === 'replace me'){
msg.reply(' replaced');
msg.delete(500);
}
})
Thank you in advance,