Compare commits

..

No commits in common. "01b19b94fc500fe5c2e84b4e860a71df298221bd" and "7977e917a11f71bc2c1ce22df5e6cc24b6f472af" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View file

@ -49,7 +49,7 @@ export default definePlugin({
replace: "$&if(!$self.isPrivateChannelRead(arguments[0]?.message))return;else " replace: "$&if(!$self.isPrivateChannelRead(arguments[0]?.message))return;else "
}, },
{ {
match: /sound:(\i\?\i:void 0,soundpack:\i,volume:\i,onClick)/, match: /sound:(\i\?\i:void 0,volume:\i,onClick)/,
replace: "sound:!$self.isPrivateChannelRead(arguments[0]?.message)?undefined:$1" replace: "sound:!$self.isPrivateChannelRead(arguments[0]?.message)?undefined:$1"
}] }]
}], }],

View file

@ -94,7 +94,7 @@ export default definePlugin({
find: "renderPrioritySpeaker", find: "renderPrioritySpeaker",
replacement: [ replacement: [
{ {
match: /renderName\(\).{0,100}speaking:.{50,200}"div",{/, match: /renderName\(\).{0,100}speaking:.{50,150}"div",{/,
replace: "$&...$self.getVoiceProps(this.props)," replace: "$&...$self.getVoiceProps(this.props),"
} }
], ],