Skip to content

Commit

Permalink
Removed unused variables.
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamT20054 authored and AdamT20054 committed Aug 13, 2023
1 parent 6eeba48 commit f29f7b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Commands/cooldown.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module.exports = new Command({
description: "Cooldown filler",
permission: "ADMINISTRATOR",

async run(message, args, client,) {
async run(message, args) {
// Constructing embeds

try {
Expand Down
2 changes: 1 addition & 1 deletion src/Structures/Client.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ class Client extends Discord.Client {
this.on(event.event, event.run.bind(null, this));
});

this.login(token).then(r => console.log(`Bot logged in!`));
this.login(token).then(() => console.log(`Bot logged in!`));
}
}

Expand Down

0 comments on commit f29f7b7

Please sign in to comment.