fixed questcommands showing up as a module

This commit is contained in:
Toastie 2025-04-12 11:42:54 +12:00
parent c7519baff9
commit 3838adf5d9
Signed by: toastie_t0ast
GPG key ID: 74226CF45EEE5AAF

View file

@ -1,5 +1,9 @@
namespace EllieBot.Modules.Games.Quests;
using EllieBot.Modules.Games.Quests;
namespace EllieBot.Modules.Games;
public partial class Games
{
public class QuestCommands : EllieModule<QuestService>
{
[Cmd]
@ -36,3 +40,4 @@ public class QuestCommands : EllieModule<QuestService>
await Response().Embed(embed).SendAsync();
}
}
}