From 61a36ee31643f43045542363cdc9df843e62c43f Mon Sep 17 00:00:00 2001 From: Glaze <35176230+Glazelf@users.noreply.github.com> Date: Mon, 6 Jan 2025 20:07:30 +0100 Subject: [PATCH] Set field name to zws --- events/debug.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/events/debug.js b/events/debug.js index fd581f74..7223ad6d 100644 --- a/events/debug.js +++ b/events/debug.js @@ -7,7 +7,9 @@ const maxEmbedLength = 6000; const maxDescriptionLength = 2000; const maxFieldValueLength = 1024; const debugChannelID = "1325890140517826580"; // Replace ID with specific debug channel ID -const fieldName = "Field"; +// Zero-width character for empty field names. Though this is an undocumented feature and may break in the future, which is why I generally avoid them. +// It is usefull pretty much only here, where we want to paste one uninterrupted string for as long as possible, as close to 6000 characters as we can get. +const fieldName = "​"; export default async (client, info) => { // return; // Comment out to enable debugging, uncomment to disable