mirror of
https://github.com/Equicord/Equicord.git
synced 2025-04-02 21:51:57 -04:00
Fix MessageDecorationsAPI
This commit is contained in:
parent
1651916441
commit
a1564cc1f0
2 changed files with 4 additions and 9 deletions
|
@ -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,
|
||||
});
|
||||
|
||||
|
|
|
@ -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])"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue