From 3a83ba5e0b47f28f70f1b20465ad503c69664f55 Mon Sep 17 00:00:00 2001 From: cameron Date: Fri, 15 Jun 2018 23:38:58 -0400 Subject: [PATCH] increased limit, increased thickness --- bot-modules/lewd/module.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bot-modules/lewd/module.js b/bot-modules/lewd/module.js index 2af2a9e..e06a1da 100644 --- a/bot-modules/lewd/module.js +++ b/bot-modules/lewd/module.js @@ -10,7 +10,7 @@ class Lewd { } async loadSubreddit(name) { - let subredditData = await rp(`https://www.reddit.com/r/${name}.json`); + let subredditData = await rp(`https://www.reddit.com/r/${name}.json?limit=250`); try { let sJson = JSON.parse(subredditData); return sJson; @@ -49,9 +49,9 @@ class Lewd { if(msg.content.startsWith('!tits')) { chan.send(await this.getRandomRedditImg('homegrowntits+BigBoobsGW+Boobies')); } else if (msg.content.startsWith('!booty') || msg.content.startsWith('!ass')) { - chan.send(await this.getRandomRedditImg('bigasses+whooties+pawg')); + chan.send(await this.getRandomRedditImg('bigasses+whooties+pawg+slightcellulite')); } else if (msg.content.startsWith('!thicc')) { - chan.send(await this.getRandomRedditImg('thick+thicker+voluptuous')); + chan.send(await this.getRandomRedditImg('thicker+thickthighs+chubby+voluptuous+breedingmaterial')); } else if (msg.content.startsWith('!2d')) { chan.send(await this.getRandomRedditImg('hentai+rule34')); }