#.
9 messages · Page 1 of 1 (latest)
You didn't pass the interaction to the execute function call
what do you mean?
Tag suggestion for @humble bear:
The order of function parameters must match between definition and function call.
function execute(client, message, args) { ... };
execute(message, client, args);
• mismatch! you pass a Message where the client is expected
• mismatch! you pass the Client where a Message is expected
In your case you didn't pass at all
im not understanding, im new
#rules 2