mirror of
https://github.com/danbulant/discord.js
synced 2026-07-07 12:11:11 +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 {
|
} else {
|
||||||
this.users = new Collection();
|
this.users = new Collection();
|
||||||
for (const mention of users) {
|
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);
|
this.users.set(user.id, user);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue