Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
FloatingMilkshake committed Mar 16, 2024
1 parent 0d63edd commit 65f9825
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Events/InteractionEvents.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ private static async Task LogCmdUsage(BaseContext context)
{
// Ignore home server, excluded servers, and authorized users
if (context.Guild is not null && (context.Guild.Id == Program.HomeServer.Id ||
Program.ConfigJson.Logs.SlashCommands.CmdLogExcludedGuilds.Contains(context.Guild.Id.ToString()) ||
Program.ConfigJson.Base.AuthorizedUsers.Contains(context.User.Id.ToString())))
Program.ConfigJson.Logs.SlashCommands.CmdLogExcludedGuilds.Contains(context.Guild.Id.ToString())) ||
Program.ConfigJson.Base.AuthorizedUsers.Contains(context.User.Id.ToString()))
return;

// Increment count
Expand Down

0 comments on commit 65f9825

Please sign in to comment.