What are all the objects in the first argument of a command?
Simple.
return {
client,
bot, // alias of client
message, // only in message commands
member,
author,
guild,
interaction, // only in slash commands
channel,
respond,
edit,
args,
objectArgs
};
1
2
3
4
5
6
7
8
9
10
11
12
13
14
2
3
4
5
6
7
8
9
10
11
12
13
14