diff --git a/commands/help.js b/commands/help.js index d3551c2..0740f54 100644 --- a/commands/help.js +++ b/commands/help.js @@ -17,6 +17,7 @@ module.exports.run = async (message, args) => { addCmd(embed, 'ping', 'Show the bot\'s ping'); addCmd(embed, 'coins', 'See how much karma/coins you have'); addCmd(embed, 'top', 'Karma leaderboard'); + addCmd(embed, 'setcoins', '[Staff command] Manage a user\'s coins') message.channel.send(embed); } @@ -28,5 +29,5 @@ module.exports.run = async (message, args) => { * @param {string} text */ function addCmd(embed, cmd, text) { - embed.addField(`${prefix}cmd`, text, true); + embed.addField(`${prefix}${cmd}`, text, true); } \ No newline at end of file