From f0271db44ea3f1374c697106b473719c1ce1c7bb Mon Sep 17 00:00:00 2001 From: Lilly-Lira Date: Fri, 5 Jun 2026 11:26:51 -0400 Subject: [PATCH] Webhook Character Fix --- code/modules/webhooks/webhook_custom_event.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/webhooks/webhook_custom_event.dm b/code/modules/webhooks/webhook_custom_event.dm index 5f636db2569..267e87bc397 100644 --- a/code/modules/webhooks/webhook_custom_event.dm +++ b/code/modules/webhooks/webhook_custom_event.dm @@ -6,6 +6,6 @@ . = ..() .["embeds"] = list(list( "title" = "A custom event is beginning.", - "description" = (data && data["text"]) || "undefined", + "description" = (data && data["text"] && readd_quotes(data["text"])) || "undefined", // RS Edit: Discord Hook Character Fix (Lira, June 2026) "color" = COLOR_WEBHOOK_DEFAULT ))