Skip to content

Commit

Permalink
Fix image gen (#750)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hipperooni authored Jan 26, 2024
1 parent 7bb16b8 commit 70b7a41
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/discord/commands/global/d.image.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,12 @@ const F = f(__filename);
const ephemeralExplanation = 'Set to "True" to show the response only to you';
const imageLimits = {
[env.ROLE_TEAMTRIPSIT]: 20,
[env.ROLE_PATRON_TIER_0]: 20,
[env.ROLE_PATRON_TIER_1]: 40,
[env.ROLE_PATRON_TIER_2]: 60,
[env.ROLE_PATRON_TIER_3]: 80,
[env.ROLE_PATRON_TIER_4]: 100,
[env.ROLE_PATRON]: 20,
[env.ROLE_PATRON_TIER_1]: 20,
[env.ROLE_PATRON_TIER_2]: 40,
[env.ROLE_PATRON_TIER_3]: 60,
[env.ROLE_PATRON_TIER_4]: 80,
[env.ROLE_PATRON_TIER_5]: 100,
};

async function help(
Expand Down

0 comments on commit 70b7a41

Please sign in to comment.