fix: cleverbot:response should now be a valid module name

This commit is contained in:
Kwoth
2024-05-10 09:53:20 +00:00
parent 6f4cbddcad
commit 75c5a003bf
5 changed files with 9 additions and 5 deletions

View File

@@ -175,7 +175,7 @@ public sealed class SomethingOnlyChannelService : IExecOnMessage
// ignore owner and admin
if (user.Id == tch.Guild.OwnerId || user.GuildPermissions.Administrator)
{
Log.Information("{Type}-Only Channel: Ignoring owner od admin ({ChannelId})", type, msg.Channel.Id);
Log.Information("{Type}-Only Channel: Ignoring owner or admin ({ChannelId})", type, msg.Channel.Id);
return false;
}