Skip to content

Commit

Permalink
Set field name to zws
Browse files Browse the repository at this point in the history
  • Loading branch information
Glazelf committed Jan 6, 2025
1 parent 14293cf commit 61a36ee
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion events/debug.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 61a36ee

Please sign in to comment.