From 69e441b17530e203f6dab0fe41ff5c16e80a0af5 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Mon, 8 Mar 2021 19:58:48 -0500 Subject: [PATCH] Peak follower count --- commands/edit-image-text/tweet.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/edit-image-text/tweet.js b/commands/edit-image-text/tweet.js index 9467aa58..95af869b 100644 --- a/commands/edit-image-text/tweet.js +++ b/commands/edit-image-text/tweet.js @@ -167,7 +167,7 @@ module.exports = class TweetCommand extends Command { name: 'Donald J. Trump', avatar: path.join(__dirname, '..', '..', 'assets', 'images', 'tweet', 'realdonaldtrump.jpg'), verified: true, - followers: 88776124 + followers: 5000000 }; } try { @@ -181,7 +181,7 @@ module.exports = class TweetCommand extends Command { name: body.name, avatar: avatarRes.body, verified: body.verified, - followers: body.followers_count + followers: Math.min(body.followers_count, 5000000) }; } catch { const avatarRes = await request.get(msg.author.displayAvatarURL({ format: 'png', size: 64 }));