From e51cfabee001dcbbeb853f5ff2ace464eee02113 Mon Sep 17 00:00:00 2001 From: Neko Life Date: Mon, 28 Jun 2021 17:12:34 +0900 Subject: [PATCH] typing --- cmds/image/baka.js | 1 + cmds/image/cry.js | 1 + cmds/image/dance.js | 1 + cmds/image/laugh.js | 1 + cmds/image/neko.js | 1 + cmds/image/smile.js | 1 + cmds/image/smug.js | 1 + cmds/image/wave.js | 1 + 8 files changed, 8 insertions(+) diff --git a/cmds/image/baka.js b/cmds/image/baka.js index 1ff89ab..1d4b017 100644 --- a/cmds/image/baka.js +++ b/cmds/image/baka.js @@ -14,6 +14,7 @@ module.exports = class baka extends commando.Command { }); } async run(msg) { + msg.channel.startTyping(); const title = `${msg.guild ? msg.member.displayName : msg.author.username} is getting dere-dere~ =>`; const image = await fetchNeko("baka"); const emb = defaultImageEmbed(msg, image, title); diff --git a/cmds/image/cry.js b/cmds/image/cry.js index 73c6726..61c35a2 100644 --- a/cmds/image/cry.js +++ b/cmds/image/cry.js @@ -14,6 +14,7 @@ module.exports = class cry extends commando.Command { }); } async run(msg) { + msg.channel.startTyping(); const title = `${msg.guild ? msg.member.displayName : msg.author.username} is crying :<`; const image = await fetchNeko("cry"); const emb = defaultImageEmbed(msg, image, title); diff --git a/cmds/image/dance.js b/cmds/image/dance.js index b120076..692fd77 100644 --- a/cmds/image/dance.js +++ b/cmds/image/dance.js @@ -14,6 +14,7 @@ module.exports = class dance extends commando.Command { }); } async run(msg) { + msg.channel.startTyping(); const title = `${msg.guild ? msg.member.displayName : msg.author.username} is dancin :>`; const image = await fetchNeko("dance"); const emb = defaultImageEmbed(msg, image, title); diff --git a/cmds/image/laugh.js b/cmds/image/laugh.js index 5ee8f3e..8dce22d 100644 --- a/cmds/image/laugh.js +++ b/cmds/image/laugh.js @@ -14,6 +14,7 @@ module.exports = class laugh extends commando.Command { }); } async run(msg) { + msg.channel.startTyping(); const title = `${msg.guild ? msg.member.displayName : msg.author.username} is laughin XD`; const image = await fetchNeko("laugh"); const emb = defaultImageEmbed(msg, image, title); diff --git a/cmds/image/neko.js b/cmds/image/neko.js index a150244..bac9a38 100644 --- a/cmds/image/neko.js +++ b/cmds/image/neko.js @@ -14,6 +14,7 @@ module.exports = class neko extends commando.Command { }); } async run(msg) { + msg.channel.startTyping(); const title = `${msg.guild ? msg.member.displayName : msg.author.username} ~Nyann~ (UwU) <3`; const image = await fetchNeko("nekos"); const emb = defaultImageEmbed(msg, image, title); diff --git a/cmds/image/smile.js b/cmds/image/smile.js index f2b7e4e..f055ac5 100644 --- a/cmds/image/smile.js +++ b/cmds/image/smile.js @@ -14,6 +14,7 @@ module.exports = class smile extends commando.Command { }); } async run(msg) { + msg.channel.startTyping(); const title = `${msg.guild ? msg.member.displayName : msg.author.username} is smilin :D`; const image = await fetchNeko("smile"); const emb = defaultImageEmbed(msg, image, title); diff --git a/cmds/image/smug.js b/cmds/image/smug.js index 9739a72..86b1b61 100644 --- a/cmds/image/smug.js +++ b/cmds/image/smug.js @@ -14,6 +14,7 @@ module.exports = class smug extends commando.Command { }); } async run(msg) { + msg.channel.startTyping(); const title = `${msg.guild ? msg.member.displayName : msg.author.username} got a smug face >:]`; const image = await fetchNeko("smug"); const emb = defaultImageEmbed(msg, image, title); diff --git a/cmds/image/wave.js b/cmds/image/wave.js index ab1d844..5ba234a 100644 --- a/cmds/image/wave.js +++ b/cmds/image/wave.js @@ -14,6 +14,7 @@ module.exports = class wave extends commando.Command { }); } async run(msg) { + msg.channel.startTyping(); const title = `${msg.guild ? msg.member.displayName : msg.author.username} is waving :)`; const image = await fetchNeko("wave"); const emb = defaultImageEmbed(msg, image, title);