Removed unused variable command from commands.

This commit is contained in:
Christer Warén
2021-09-05 03:06:47 +03:00
parent c81dbddab1
commit ec6ea7e839
7 changed files with 8 additions and 8 deletions

View File

@ -13,7 +13,7 @@ module.exports = {
if (!command) return;
try {
command.execute(interaction, client, Discord, command);
command.execute(interaction, client, Discord);
} catch (error) {
interaction.reply({
content: client.messages.runningCommandFailed,
@ -27,7 +27,7 @@ module.exports = {
if (!command) return;
try {
command.execute(interaction, client, Discord, command);
command.execute(interaction, client, Discord);
} catch (error) {
interaction.reply({
content: client.messages.runningCommandFailed,