fix role list

This commit is contained in:
Christopher Cookman 2024-04-09 16:22:46 -06:00
parent 184006b9a0
commit c0f6b49e6e
Signed by: ChrisChrome
GPG key ID: A023A26E42C33A42

View file

@ -191,7 +191,7 @@ client.on('messageCreate', async (message) => {
return {
"name": role.name,
"color": role.hexColor,
"permissions": role.permissions.bitfield.toString(2)
"permissions": role.permissions.toArray()
};
})
};