#.

9 messages · Page 1 of 1 (latest)

acoustic sable
#

• What's your exact discord.js npm list discord.js and node node -v version?
• Post the full error stack trace, not just the top part!
• Show your code!
• Explain what exactly your issue is.
• Not a discord.js issue? Check out #useful-servers.

strange wing
#

You didn't pass the interaction to the execute function call

humble bear
#

what do you mean?

brisk tuskBOT
#

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

strange wing
#

In your case you didn't pass at all

humble bear
#

im not understanding, im new

strange wing
#

#rules 2

humble bear
#

oh..

#

thanks