Fix an issue with long dice expressions and description length limits
This commit is contained in:
parent
49da6d8041
commit
18853be664
@ -39,6 +39,7 @@ ${error.toString()}
|
||||
\`\`\`
|
||||
If this issue persists please report it here: <https://github.com/Dakedres/dicedicedice/issues>\
|
||||
`,
|
||||
|
||||
aboutMessage: (guildCount) => `\
|
||||
A discord bot for metaphorically "rolling dice"/generating random values. Made for use with Weaverdice systems.
|
||||
|
||||
|
@ -203,7 +203,7 @@ const registerMacroCommands = async guildId => {
|
||||
for await (let [ name, dice ] of macros.iterator() )
|
||||
commands.push({
|
||||
name,
|
||||
description: "Roll " + dice.replaceAll('\n', ';')
|
||||
description: elipsify("Roll " + dice.replaceAll('\n', ';'), 100)
|
||||
})
|
||||
|
||||
await rest.put(
|
||||
@ -212,6 +212,9 @@ const registerMacroCommands = async guildId => {
|
||||
)
|
||||
}
|
||||
|
||||
const elipsify = (string, maxLength) =>
|
||||
string.length > maxLength ? string.slice(0, maxLength - 3) + '...' : string
|
||||
|
||||
const pruneDB = async () => {
|
||||
let validIds = []
|
||||
|
||||
@ -291,7 +294,6 @@ addCommand(
|
||||
// return
|
||||
// }
|
||||
|
||||
|
||||
await interaction.deferReply()
|
||||
|
||||
let macros = openMacros(interaction.guild.id)
|
||||
|
Loading…
x
Reference in New Issue
Block a user