You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a bug in Remora's translation from Command tree ➜ Application command tree, however executing the malformed command still appears to work correctly
Library / Runtime Information
C# 11
.NET 7.0.2
Remora.Discord.Commands 26.2.3
The text was updated successfully, but these errors were encountered:
I don't think this is a Remora issue, because I have several groups with this setup that work just fine. Make sure you're not registering the inner group by itself, either explicitly or via assembly scanning.
Description
When registering a nested slash command group, the child group is un-nested at runtime.
Steps to Reproduce
Register the following with Remora.Discord.Commands
Expected Behavior
The command is registered with discord as `/parent child command.
This is represented as Command ➜ Subcommand-group ➜ Subcommand
Current Behavior
The command is in fact registered in this manner, but is also duplicated, eliding the parent.
This is illustrated in this screenshot:
Top:
Command ➜ Subommand
(Incorrect)Bottom:
Command ➜ Subcommand-group ➜ Command
(Correct)This is a bug in Remora's translation from Command tree ➜ Application command tree, however executing the malformed command still appears to work correctly
Library / Runtime Information
C# 11
.NET 7.0.2
Remora.Discord.Commands 26.2.3
The text was updated successfully, but these errors were encountered: