aboutsummaryrefslogtreecommitdiff
path: root/basic.js
diff options
context:
space:
mode:
authorElias Fleckenstein <eliasfleckenstein@web.de>2022-03-05 21:33:19 +0100
committerElias Fleckenstein <eliasfleckenstein@web.de>2022-03-05 21:33:19 +0100
commit5fa566734ecd144d3bdc203a7ff3b131aa7dfadf (patch)
tree14e0996c82c82f3065ca17401e39a1f9b674eeed /basic.js
parent2e797dd24009c52fa712317038900663a5aa32ac (diff)
downloadfurrybot-discord-5fa566734ecd144d3bdc203a7ff3b131aa7dfadf.tar.xz
Implement operators
Diffstat (limited to 'basic.js')
-rw-r--r--basic.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/basic.js b/basic.js
index b5a9232..0ef4f46 100644
--- a/basic.js
+++ b/basic.js
@@ -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]