Revert "Added extremely basic multi-role support"

This reverts commit 1c226e8f7e.
This commit is contained in:
Isaac (eartharoid)
2020-09-20 22:01:10 +01:00
parent 1c226e8f7e
commit 585be0e7d5
11 changed files with 15 additions and 32 deletions

View File

@@ -14,16 +14,5 @@ module.exports = {
*/
plural(word, num) {
return num !== 1 ? word + 's' : word;
},
isStaff(member) {
let staff = false;
member.client.config.staff_roles.forEach(id => {
if (member.roles.cache.has(id))
staff = true;
});
return staff;
}
};