Browse Source

Fix misplaced parenthesis

master
Abheek 4 years ago
committed by GitHub
parent
commit
d27f8d9259
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      bot.js

2
bot.js

@ -618,7 +618,7 @@ async function usersWith(message) {
message.reply("query must contain at least 3 characters!")
return;
}
const roles = message.guild.roles.cache.filter(role => role.name.toLowerCase().includes(message.content.split(" ")[1]).toLowerCase());
const roles = message.guild.roles.cache.filter(role => role.name.toLowerCase().includes(message.content.split(" ")[1].toLowerCase()));
const role = roles.array()[0];
const membersList = roles.array()[0].members.array()
if (membersList.length > threshold) {

Loading…
Cancel
Save