Skip to content

Commit

Permalink
Merge pull request #2 from muricans/felanbird-master
Browse files Browse the repository at this point in the history
command cleanup
  • Loading branch information
muricans authored Apr 29, 2019
2 parents 2a34e89 + c542abf commit bde76b3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
7 changes: 3 additions & 4 deletions commands/help.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 <bet amount>', 'Returns win/loss and new total points')
.addField('!userinfo', 'Returns userinfo about yourself')
.addField('!random <subreddit> [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);
Expand Down Expand Up @@ -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)')
Expand Down Expand Up @@ -82,4 +81,4 @@ module.exports = {
});
});
},
};
};
3 changes: 1 addition & 2 deletions commands/roulette.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down Expand Up @@ -48,4 +47,4 @@ module.exports = {
});
});
},
};
};

0 comments on commit bde76b3

Please sign in to comment.