diff --git a/commands/message/core/help.js b/commands/message/core/help.js index abf59a0..d9b5f6b 100644 --- a/commands/message/core/help.js +++ b/commands/message/core/help.js @@ -71,7 +71,6 @@ module.exports = { usage: 'help []' }, run: async (context, args) => { - context.triggerTyping(); if(args.command){ // Detailed command view let results = [] diff --git a/commands/message/core/privacy.js b/commands/message/core/privacy.js index 8b90854..92703ca 100644 --- a/commands/message/core/privacy.js +++ b/commands/message/core/privacy.js @@ -12,7 +12,6 @@ module.exports = { usage: 'privacy' }, run: async (context) => { - context.triggerTyping(); return await editOrReply(context, createEmbed("default", context, { description: `${icon("rules")} **labsCore Privacy Policy**\n*Last Updated: ${timestamp(PRIVACY_POLICY_LAST_UPDATE, "f")}*\n\n${PRIVACY_POLICY_SECTIONS.join('\n\n')}\n\nIf you have any further questions, please contact us via our ${link(DISCORD_INVITES.privacy, "Support Server")}`, diff --git a/commands/message/core/shard.js b/commands/message/core/shard.js index 08667b9..5b9cbf6 100644 --- a/commands/message/core/shard.js +++ b/commands/message/core/shard.js @@ -11,8 +11,7 @@ module.exports = { category: 'core', usage: 'shard' }, - run: async (context) => { - context.triggerTyping(); + run: async (context) => { return await editOrReply(context, createEmbed("default", context, { description: `${codeblock("ansi", [ diff --git a/commands/message/dev/update.js b/commands/message/dev/update.js index e36b7ec..4d5e02f 100644 --- a/commands/message/dev/update.js +++ b/commands/message/dev/update.js @@ -21,7 +21,6 @@ module.exports = { `${context.user.mention}, you are lacking the permission \`BOT_OWNER\`.` ), run: async (context, args) => { - await context.triggerTyping(); let response = await editOrReply(context, createEmbed("loading", context, "Updating bot...")) try{ const t = Date.now() diff --git a/commands/message/fun/art.js b/commands/message/fun/art.js index 7151438..53300c5 100644 --- a/commands/message/fun/art.js +++ b/commands/message/fun/art.js @@ -32,7 +32,6 @@ module.exports = { { name: 'rotate', default: 'rand', required: false } ], run: async (context, args) => { - context.triggerTyping(); let response = await editOrReply(context, createEmbed("loading", context, `Generating image...`)) try{ let seed = Math.floor(Math.random() * 999999) + 100000, diff --git a/commands/message/image/dalle.js b/commands/message/image/dalle.js index 615fb09..dd9ff5d 100644 --- a/commands/message/image/dalle.js +++ b/commands/message/image/dalle.js @@ -19,7 +19,6 @@ module.exports = { duration: 5000 }, run: async (context, args) => { - context.triggerTyping(); let response = await editOrReply(context, { embeds: [createEmbed("loading", context, `Synthesizing images...`)] }) try{ diff --git a/commands/message/info/guild.js b/commands/message/info/guild.js index f20ff8f..330e310 100644 --- a/commands/message/info/guild.js +++ b/commands/message/info/guild.js @@ -14,8 +14,7 @@ module.exports = { category: 'info', usage: 'server' }, - run: async (context, args) => { - context.triggerTyping(); + run: async (context, args) => { try{ const emojis = context.message.guild.emojis const animojis = emojis.filter(emoji => emoji.animated).length @@ -69,7 +68,7 @@ module.exports = { // Guild Features if(g.features.length >= 1){ - + // Create an empty field so everything properly aligns on desktop guildCard.fields.push({ name: `​`, diff --git a/commands/message/utils/enlarge.js b/commands/message/utils/enlarge.js index 17d2ca9..8bf16d9 100644 --- a/commands/message/utils/enlarge.js +++ b/commands/message/utils/enlarge.js @@ -41,7 +41,6 @@ module.exports = { {name: 'type', default: 'twitter'} ], run: async (context, args) => { - await context.triggerTyping(); const { matches } = Utils.regex( Constants.DiscordRegexNames.EMOJI, args.emoji diff --git a/commands/message/utils/qr.js b/commands/message/utils/qr.js index 3c4903b..12268ff 100644 --- a/commands/message/utils/qr.js +++ b/commands/message/utils/qr.js @@ -20,8 +20,6 @@ module.exports = { // If we have an argument, generate code if(args.text.length){ - await context.triggerTyping(); - let response = await editOrReply(context, createEmbed("loading", context, `Generating qr code...`)) try{ const t = Date.now(); diff --git a/commands/message/utils/screenshot.js b/commands/message/utils/screenshot.js index 5197c79..eec9598 100644 --- a/commands/message/utils/screenshot.js +++ b/commands/message/utils/screenshot.js @@ -15,7 +15,6 @@ module.exports = { usage: 'screenshot ' }, run: async (context, args) => { - context.triggerTyping(); if(!args.url) return editOrReply(context, { embeds: [createEmbed("warning", context, "No url supplied.")] }) let response = await editOrReply(context, createEmbed("loading", context, `Creating website screenshot...`))