Skip to content

Commit

Permalink
chore: add note to instance_info command that it is not functional
Browse files Browse the repository at this point in the history
  • Loading branch information
Skelmis committed Feb 4, 2024
1 parent 806ba53 commit eb03f25
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion suggestions/cogs/help_guild_cog.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,12 @@ async def instance_info(
description="The ID of the guild you want info on."
),
):
"""Retrieve information about what instance a given guild sees."""
"""Retrieve information about what instance a given guild sees. This is currently wrong."""
await interaction.send(
ephemeral=True, content="This command currently does not work correctly."
)
return

guild_id = int(guild_id)
shard_id = self.bot.get_shard_id(guild_id)
cluster_id = (
Expand Down

0 comments on commit eb03f25

Please sign in to comment.