diff options
| author | 8cy <[email protected]> | 2020-06-27 22:52:54 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-06-27 22:52:54 -0700 |
| commit | 80951013e391aab140800e4f386867e6c391553f (patch) | |
| tree | 3d7101237ef1cd8d6fe2a2fab751a2dc55ae7d84 /src/commands/zerotwo/douse.ts | |
| parent | more config shit (diff) | |
| download | dep-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/zerotwo/douse.ts')
| -rw-r--r-- | src/commands/zerotwo/douse.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/commands/zerotwo/douse.ts b/src/commands/zerotwo/douse.ts index 5fc21af..d9cdca3 100644 --- a/src/commands/zerotwo/douse.ts +++ b/src/commands/zerotwo/douse.ts @@ -1,8 +1,8 @@ -import { Command, CommandoMessage } from 'discord.js-commando'; +import { Command, CommandoMessage, CommandoClient } from 'discord.js-commando'; import { MessageEmbed } from 'discord.js'; module.exports = class DouseZeroTwo extends Command { - constructor(client) { + constructor(client: CommandoClient) { super(client, { name: 'douse', group: 'zerotwo', @@ -23,6 +23,6 @@ module.exports = class DouseZeroTwo extends Command { let emb = new MessageEmbed() .setColor(0xFFD0DF) .setImage('https://i.pinimg.com/originals/6a/c8/26/6ac826e3d0cbd64eb4f42c12a73fcdb8.gif') - msg.say(emb) + return msg.say(emb) } };
\ No newline at end of file |