Skip to content

Commit

Permalink
Fix missed merge conflict changes / adjust for DSharpPlus.Commands
Browse files Browse the repository at this point in the history
  • Loading branch information
FloatingMilkshake committed Dec 10, 2024
1 parent 810d9bc commit 18b6699
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Commands/DebugCmds.cs
Original file line number Diff line number Diff line change
Expand Up @@ -543,12 +543,13 @@ public async Task DumpFromDb(CommandContext ctx,
}

[Command("cleanup")]
[Aliases("clean", "prune")]
[TextAlias("clean", "prune")]
[Description("Removes overrides from the db for channels that no longer exist.")]
[IsBotOwner]
public async Task CleanUpOverrides(CommandContext ctx)
{
var msg = await ctx.RespondAsync($"{Program.cfgjson.Emoji.Loading} Working on it...");
await ctx.RespondAsync($"{Program.cfgjson.Emoji.Loading} Working on it...");
var msg = await ctx.GetResponseAsync();
var removedOverridesCount = 0;

var dbOverwrites = await Program.db.HashGetAllAsync("overrides");
Expand Down

0 comments on commit 18b6699

Please sign in to comment.