Update SplitLargeMessages.plugin.js

This commit is contained in:
Mirco Wittrien 2023-01-22 19:23:50 +01:00
parent b32c8c85c9
commit 2aa5956d7e
1 changed files with 0 additions and 2 deletions

View File

@ -90,8 +90,6 @@ module.exports = (_ => {
onStart () {
maxMessageLength = BDFDB.LibraryModules.NitroUtils.canUseIncreasedMessageLength(BDFDB.LibraryStores.UserStore.getCurrentUser()) ? BDFDB.DiscordConstants.MAX_MESSAGE_LENGTH_PREMIUM : BDFDB.DiscordConstants.MAX_MESSAGE_LENGTH;
console.log(this.settings.amounts.splitCounter);
BDFDB.PatchUtils.patch(this, BDFDB.LibraryModules.ChatRestrictionUtils, "applyChatRestrictions", {before: e => {
if (e.methodArguments[0] && e.methodArguments[0].content && !this.isSlowDowned(e.methodArguments[0].channel)) e.methodArguments[0].content = "_";
}});