diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2022-03-05 21:33:19 +0100 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2022-03-05 21:33:19 +0100 |
commit | 5fa566734ecd144d3bdc203a7ff3b131aa7dfadf (patch) | |
tree | 14e0996c82c82f3065ca17401e39a1f9b674eeed /basic.js | |
parent | 2e797dd24009c52fa712317038900663a5aa32ac (diff) | |
download | furrybot-discord-5fa566734ecd144d3bdc203a7ff3b131aa7dfadf.tar.xz |
Implement operators
Diffstat (limited to 'basic.js')
-rw-r--r-- | basic.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2,7 +2,7 @@ module.exports = { help: { params: "[<command>]", help: "Display help for a commands or show list of available commands", - func: (msg, [cmd]) => { + func: (msg, [cmd], {commands}) => { if (cmd) { let def = commands[cmd] |