forked from Supositware/Haha-Yes
Dosent get stuck in while loop ( i think )
This commit is contained in:
parent
874be91270
commit
8f12d5f9a1
1 changed files with 3 additions and 1 deletions
|
@ -21,11 +21,13 @@ module.exports = class redditCommand extends Command {
|
|||
async run(message, { sub }) {
|
||||
const { body } = await snekfetch.get('https://www.reddit.com/r/' + sub + '.json?limit=100');
|
||||
let /* the bodies hit the floor */ i = Math.floor((Math.random() * 10) + 1);
|
||||
let a = 0
|
||||
if (!body.data.children[1]) {
|
||||
return message.say('Not a valid subreddit')
|
||||
}
|
||||
while (body.data.children[i].data.post_hint !== 'image') {
|
||||
while (body.data.children[i].data.post_hint !== 'image' || a == 5) {
|
||||
i = Math.floor((Math.random() * 100) + 1);
|
||||
a++
|
||||
}
|
||||
if (body.data.children[i].data.over_18 == true) {
|
||||
return message.say("No nsfw ( if you want a nsfw version of this commands use the feedback commands \"haha feedback <your feedback>\")")
|
||||
|
|
Loading…
Reference in a new issue