utility.guildinfo: alignment

This commit is contained in:
Cynthia Foxwell 2024-07-29 20:14:49 -06:00
parent 6fda3ae368
commit 850228e237

View file

@ -57,12 +57,12 @@ guildinfo.callback = async function (msg, line, args, {nolocal, debug}) {
const sources = await tryGetGuild(id);
return `\`\`\`js
"local": ${sources.local}
"preview": ${sources.preview}${sources.local && sources.preview ? " // false positive, local = true" : ""}
"widget": ${sources.widget}
"discovery": ${sources.discovery}
"local": ${sources.local}
"preview": ${sources.preview}${sources.local && sources.preview ? " // false positive, local = true" : ""}
"widget": ${sources.widget}
"discovery": ${sources.discovery}
"verification": ${sources.verification}
"clan": ${sources.clan}
"clan": ${sources.clan}
\`\`\``;
} else {
if (!SNOWFLAKE_REGEX.test(line)) return "Not a snowflake.";