From c8424e6cb116e01ca66ecbe32ae354f1a2dca8ce Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Sat, 11 Apr 2026 12:19:46 -0500 Subject: [PATCH] docs(dev_tools): update refractor-test card_id describe string Review follow-up: the @app_commands.describe string still referenced "batting or pitching card ID" after the switch to the unified cards endpoint. Update to clarify that card_id is now a card-instance ID. Co-Authored-By: Claude Opus 4.6 (1M context) --- cogs/dev_tools.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cogs/dev_tools.py b/cogs/dev_tools.py index d996722..e724184 100644 --- a/cogs/dev_tools.py +++ b/cogs/dev_tools.py @@ -108,7 +108,9 @@ class DevToolsCog(commands.Cog): @group_dev.command( name="refractor-test", description="Run refractor integration test on a card" ) - @app_commands.describe(card_id="The batting or pitching card ID to test") + @app_commands.describe( + card_id="Card-instance ID (from the unified cards table; discoverable via /refractor status)" + ) async def refractor_test(self, interaction: discord.Interaction, card_id: int): await interaction.response.defer()