Actually fix inactivity for ET

This commit is contained in:
Regalijan 2023-11-08 13:34:50 -05:00
parent 229facbc7b
commit bc67bb315b
Signed by: regalijan
GPG Key ID: 5D4196DA269EF520

View File

@ -55,7 +55,7 @@ export async function loader({ context }: { context: RequestContext }) {
const newItemPermissions = {
appeal_bans: [1 << 0, 1 << 11],
game_ban: [1 << 5],
inactivity: [1 << 2, 1 << 9, 1 << 10],
inactivity: [1 << 2, 1 << 3, 1 << 9, 1 << 10],
infraction: [1 << 0, 1 << 2, 1 << 6, 1 << 7],
user_lookup: [1 << 5, 1 << 8],
};
@ -72,7 +72,7 @@ export async function loader({ context }: { context: RequestContext }) {
const typePermissions = {
appeal: [1 << 0, 1 << 1],
gma: [1 << 5],
inactivity: [1 << 3, 1 << 4, 1 << 6, 1 << 7, 1 << 11, 1 << 12],
inactivity: [1 << 4, 1 << 6, 1 << 7, 1 << 11, 1 << 12],
report: [1 << 5],
};