Fix error in plugin example
parent
1538b25ee5
commit
716675e11f
|
@ -22,7 +22,7 @@ This example adds a command `!mycommand` that replies with `"Reply from my custo
|
||||||
```js
|
```js
|
||||||
module.exports = function({ bot, knex, config, commands }) {
|
module.exports = function({ bot, knex, config, commands }) {
|
||||||
commands.addInboxThreadCommand('mycommand', [], (msg, args, thread) => {
|
commands.addInboxThreadCommand('mycommand', [], (msg, args, thread) => {
|
||||||
thread.replyToUser(msg.author, 'Reply from my custom plugin!');
|
thread.replyToUser(msg.member, 'Reply from my custom plugin!');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
Loading…
Reference in New Issue