Fixed an issue which caused onmessage handlers to not block further execution properly, causing execution of both custom reactions and commands, ref #357

This commit is contained in:
Kwoth
2022-05-11 11:43:03 +02:00
parent 91ee0d121c
commit 4b5d27d963
2 changed files with 3 additions and 0 deletions

View File

@@ -116,6 +116,8 @@ public sealed class BehaviorHandler : IBehaviorHandler, INService
usrMsg.Author.Id,
usrMsg.Channel.Id,
usrMsg.Content?.TrimTo(10));
return true;
}
}
catch (Exception ex)