1
0
Fork 0

Post no longer hardcoded

Commando
loicbersier 6 years ago
parent b1d278ba2d
commit 00bdddaf24

@ -27,7 +27,8 @@ module.exports = class redditCommand extends Command {
if (!response.data)
return message.say('Not a valid subreddit')
while (response.data.children[i].data.post_hint !== 'image') {
i = Math.floor((Math.random() * 100) + 1);
i = Math.floor((Math.random() * response.data.children.length));
a++
if (a == 5)
return message.say("Could not find any images")

Loading…
Cancel
Save