Fix wrong keyword

This commit is contained in:
Zeva Rose 2022-05-03 15:27:45 -06:00
parent 3ea435aaa3
commit b665fa45b8

View file

@ -230,7 +230,7 @@ class CaseCog(Cog):
embed = await self.get_summary_embed(case, ctx.guild)
await ctx.send(embed=embed)
@show.subcommand(sub_cmd_name="actions", description="Get case actions")
@show.subcommand(sub_cmd_name="actions", sub_cmd_description="Get case actions")
@slash_option(name="cid", description="Case ID", opt_type=OptionTypes.STRING, required=True)
@check(admin_or_permissions(Permissions.BAN_MEMBERS))
async def _case_show_actions(self, ctx: InteractionContext, cid: str) -> None: