bump to v1.13.12

This commit is contained in:
Vendicated 2026-01-09 23:25:40 +01:00
parent 353a699481
commit 5c7a90c05f
No known key found for this signature in database
GPG key ID: D66986BAF75ECF18
2 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
{
"name": "vencord",
"private": "true",
"version": "1.13.11",
"version": "1.13.12",
"description": "The cutest Discord client mod",
"homepage": "https://github.com/Vendicated/Vencord#readme",
"bugs": {

View file

@ -192,8 +192,8 @@ export default definePlugin({
const { messageSaturation } = settings.use(["messageSaturation"]);
const author = useMessageAuthor(message);
// Do not apply role color if the send fails, otherwise it becomes indistinguishable if the message is sent
if (message.state !== "SENT") return;
// Do not apply role color if the send fails, otherwise it becomes indistinguishable
if (message.state !== "SEND_FAILED") return;
if (author.colorString != null && messageSaturation !== 0) {
const value = `color-mix(in oklab, ${author.colorString} ${messageSaturation}%, var({DEFAULT}))`;