feat(aurora): add autocomplete entry for all
This commit is contained in:
parent
3d8050d3b9
commit
1a20ae30de
1 changed files with 1 additions and 0 deletions
|
@ -816,6 +816,7 @@ class Aurora(commands.Cog):
|
||||||
for t in types:
|
for t in types:
|
||||||
choices.append(app_commands.Choice(name=current+t, value=current+t))
|
choices.append(app_commands.Choice(name=current+t, value=current+t))
|
||||||
else:
|
else:
|
||||||
|
choices.append(app_commands.Choice(name="all", value="all"))
|
||||||
for t in types:
|
for t in types:
|
||||||
if t.startswith(current):
|
if t.startswith(current):
|
||||||
choices.append(app_commands.Choice(name=t, value=t))
|
choices.append(app_commands.Choice(name=t, value=t))
|
||||||
|
|
Loading…
Reference in a new issue