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

@@ -12,6 +12,7 @@ Experimental changelog. Mostly based on [keepachangelog](https://keepachangelog.
### Fixed
- `.give` DM will once again show an amount
- Fixed an issue with filters not working and with custom reactions no longer being able to override commands.
## [4.1.4] - 06-05-2022

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)