fix: fixed some command groups incorrectly showing up as modules

This commit is contained in:
Kwoth
2024-08-08 12:15:34 +00:00
parent f631f16690
commit c95d1421c6
4 changed files with 14 additions and 5 deletions

View File

@@ -1,9 +1,11 @@
namespace NadekoBot.Modules.Administration.DangerousCommands;
using NadekoBot.Modules.Administration.DangerousCommands;
namespace NadekoBot.Modules.Administration;
public partial class Administration
{
[Group]
public class CleanupCommands : CleanupModuleBase
public partial class CleanupCommands : CleanupModuleBase
{
private readonly ICleanupService _svc;

View File

@@ -1,8 +1,9 @@
namespace NadekoBot.Modules.Utility;
public partial class UtilityCommands
public partial class Utility
{
public class PromptCommands : NadekoModule<IAiAssistantService>
[Group]
public partial class PromptCommands : NadekoModule<IAiAssistantService>
{
[Cmd]
[RequireContext(ContextType.Guild)]