diff --git a/commands/leaderboards/utils.py b/commands/leaderboards/utils.py index f57a4c55..262b658f 100644 --- a/commands/leaderboards/utils.py +++ b/commands/leaderboards/utils.py @@ -68,7 +68,7 @@ async def hv_player_leaderboard( ) else: text += f'-# (#{i}) | {player.tag}\n' - if i % 25 == 0: + if i % 20 == 0: text_chunks.append(text) text = '' diff --git a/commands/ticketing/commands.py b/commands/ticketing/commands.py index 0e17f5a9..80741e12 100644 --- a/commands/ticketing/commands.py +++ b/commands/ticketing/commands.py @@ -267,7 +267,7 @@ async def ticket_roles( self, ctx: disnake.ApplicationCommandInteraction, ticket_button: tuple[str, str] = commands.Param(autocomplete=autocomplete.ticket_panel_buttons, converter=convert.ticket_button), - mode=commands.Param(choices=['Add to', 'Remove Roles']), + mode=commands.Param(choices=['Add Roles', 'Remove Roles']), remove=commands.Param(default='False', choices=['True']), ): diff --git a/utility/startup.py b/utility/startup.py index 540e7c1c..d1bcc4ff 100644 --- a/utility/startup.py +++ b/utility/startup.py @@ -75,7 +75,7 @@ def calculate_shard_distribution(total_shards, total_clusters): return shard_distribution - TOTAL_SHARDS = config.total_clusters + TOTAL_SHARDS = config.total_clusters * 2 shard_distribution = calculate_shard_distribution(TOTAL_SHARDS, config.total_clusters)