Skip to content

Commit

Permalink
Add missing group to guild_check
Browse files Browse the repository at this point in the history
  • Loading branch information
tazz4843 committed Nov 16, 2024
1 parent 745516f commit ce79d7f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripty_commands/src/cmds/admin/guild_check.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ pub async fn check_guilds(ctx: Context<'_>, specified_ratio: f64) -> Result<(),
let mut error_count: u32 = 0;

// guilds should be categorized by the number of members in them
const GROUPS: [Range<u64>; 18] = [
const GROUPS: [Range<u64>; 19] = [
0..2,
2..5,
5..10,
Expand All @@ -32,6 +32,7 @@ pub async fn check_guilds(ctx: Context<'_>, specified_ratio: f64) -> Result<(),
50000..99999,
100000..250000,
250000..500000,
500000..999999,
1000000..u64::MAX,
];

Expand Down

0 comments on commit ce79d7f

Please sign in to comment.