diff --git a/commands/help.js b/commands/help.js index 9ff25c9..e31fbd9 100644 --- a/commands/help.js +++ b/commands/help.js @@ -5,14 +5,12 @@ function pageOne(edit, message) { .setTitle('Commands') .addField('!help', 'Returns a list of commands for this bot') .addField('!ping', 'Returns pong') - // .addField('!roulette', 'Returns ') + .addField('!roulette ', 'Returns win/loss and new total points') .addField('!userinfo', 'Returns userinfo about yourself') .addField('!random [time] [search]', 'Returns a random thread from a subreddit') .addField('!anal', 'Returns an anal image') .addField('!ass', 'Returns an image of an ass') .addField('!blowjob', 'Returns a blowjob image') - .addField('!boobs', 'Returns a picture of a pair of milkers') - // move !boobs to page2 .setFooter('Page (1/3)'); if (edit) { return message.edit(embed); @@ -47,6 +45,7 @@ module.exports = { case 2: const embed2 = new Discord.RichEmbed() .setTitle('Commands') + .addField('!boobs', 'Returns a picture of a pair of milkers') .addField('!hardcore', 'Returns a hardcore porn image') .addField('!hentai', 'Returns a hentai image') .addField('!nsfw', 'Returns an nsfw image (Straight)') @@ -82,4 +81,4 @@ module.exports = { }); }); }, -}; \ No newline at end of file +}; diff --git a/commands/roulette.js b/commands/roulette.js index 40caad4..43b82b2 100644 --- a/commands/roulette.js +++ b/commands/roulette.js @@ -10,7 +10,6 @@ let db = new sqlite.Database('./mbot.db', (err) => { function setPoints(amnt, id) { db.run('UPDATE users SET points = ? WHERE id = ?', amnt, id); } - module.exports = { name: 'roulette', execute(message, args, client) { @@ -48,4 +47,4 @@ module.exports = { }); }); }, -}; \ No newline at end of file +};