mirror of
https://gitlab.com/bignutty/labscore.git
synced 2025-06-17 18:37:07 -04:00
only use typing indicator where it makes sense
This commit is contained in:
parent
b297bd9f0e
commit
c54a29ad26
10 changed files with 3 additions and 14 deletions
|
@ -71,7 +71,6 @@ module.exports = {
|
|||
usage: 'help [<command>]'
|
||||
},
|
||||
run: async (context, args) => {
|
||||
context.triggerTyping();
|
||||
if(args.command){
|
||||
// Detailed command view
|
||||
let results = []
|
||||
|
|
|
@ -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")}`,
|
||||
|
|
|
@ -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", [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue