diff --git a/src/structures/role.ts b/src/structures/role.ts index ebe61f450..e8e6a4574 100644 --- a/src/structures/role.ts +++ b/src/structures/role.ts @@ -1,9 +1,7 @@ import { RoleData } from "../types/role.ts"; -import { calculatePermissions } from "../utils/permissions.ts"; export const createRole = (data: RoleData) => ({ ...data, - permissions: calculatePermissions(BigInt(data.permissions_new)), /** The @ mention of the role in a string. */ mention: `<@&${data.id}>`, });