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,7 +1,11 @@
namespace EllieBot.Modules.Games.Quests;
using EllieBot.Modules.Games.Quests;
public class QuestCommands : EllieModule<QuestService>
namespace EllieBot.Modules.Games;
public partial class Games
{
public class QuestCommands : EllieModule<QuestService>
{
[Cmd]
public async Task QuestLog()
{
@ -35,4 +39,5 @@ public class QuestCommands : EllieModule<QuestService>
await Response().Embed(embed).SendAsync();
}
}
}