summaryrefslogtreecommitdiff
path: root/src/commands/roleplay/inhale.ts
diff options
context:
space:
mode:
author8cy <[email protected]>2020-06-27 22:52:54 -0700
committer8cy <[email protected]>2020-06-27 22:52:54 -0700
commit80951013e391aab140800e4f386867e6c391553f (patch)
tree3d7101237ef1cd8d6fe2a2fab751a2dc55ae7d84 /src/commands/roleplay/inhale.ts
parentmore config shit (diff)
downloaddep-core-80951013e391aab140800e4f386867e6c391553f.tar.xz
dep-core-80951013e391aab140800e4f386867e6c391553f.zip
add ts defs so not a lot of errors left
- made .todo file for epic error tracking
Diffstat (limited to 'src/commands/roleplay/inhale.ts')
-rw-r--r--src/commands/roleplay/inhale.ts9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/commands/roleplay/inhale.ts b/src/commands/roleplay/inhale.ts
index 4765a86..8a49bd1 100644
--- a/src/commands/roleplay/inhale.ts
+++ b/src/commands/roleplay/inhale.ts
@@ -1,8 +1,9 @@
-import { Command, CommandoMessage } from 'discord.js-commando';
+import { Command, CommandoMessage, CommandoClient } from 'discord.js-commando';
+//@ts-ignore no types
import emoji from 'emoji-random';
module.exports = class InhaleRoleplay extends Command {
- constructor(client) {
+ constructor(client: CommandoClient) {
super(client, {
name: 'inhale',
group: 'roleplay',
@@ -24,7 +25,7 @@ module.exports = class InhaleRoleplay extends Command {
]
});
}
- run(msg: CommandoMessage, { uUser }) {
- msg.say(`_**${msg.author.username}** inhales **${uUser.username}** but gained no abilities._` + ' ' + emoji.random())
+ run(msg: CommandoMessage, { uUser }: any) {
+ return msg.say(`_**${msg.author.username}** inhales **${uUser.username}** but gained no abilities._` + ' ' + emoji.random())
}
}; \ No newline at end of file