mirror of
https://github.com/danbulant/discord.js
synced 2026-05-27 14:02:02 +00:00
style: change let to const in MessageMentions (#3483)
This commit is contained in:
parent
60f89bd96f
commit
d280d1b03f
1 changed files with 1 additions and 1 deletions
|
|
@ -47,7 +47,7 @@ class MessageMentions {
|
|||
} else {
|
||||
this.users = new Collection();
|
||||
for (const mention of users) {
|
||||
let user = message.client.users.add(mention);
|
||||
const user = message.client.users.add(mention);
|
||||
this.users.set(user.id, user);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue