Fix MessageDecorationsAPI

This commit is contained in:
thororen1234 2025-03-30 13:37:58 -04:00
parent 1651916441
commit a1564cc1f0
No known key found for this signature in database
2 changed files with 4 additions and 9 deletions

View file

@ -30,16 +30,11 @@ const settings = definePluginSettings({
export default definePlugin({
name: "PolishWording",
description:
"Tweaks your messages to make them look nicer and have better grammar",
description: "Tweaks your messages to make them look nicer and have better grammar",
authors: [Devs.Samwich],
dependencies: ["MessageEventsAPI"],
start() {
addMessagePreSendListener(presendObject);
},
stop() {
removeMessagePreSendListener(presendObject);
},
start: () => addMessagePreSendListener(presendObject),
stop: () => removeMessagePreSendListener(presendObject),
settings,
});

View file

@ -32,7 +32,7 @@ export default definePlugin({
{
find: '"Message Username"',
replacement: {
match: /#{intl::GUILD_COMMUNICATION_DISABLED_BOTTOM_SHEET_TITLE}.+?}\),\i(?=\])/,
match: /#{intl::GUILD_COMMUNICATION_DISABLED_BOTTOM_SHEET_TITLE}.+?}\)\)(?=\])/,
replace: "$&,Vencord.Api.MessageDecorations.__addDecorationsToMessage(arguments[0])"
}
}