From 629c604d15f0ac8c12e8f8aebd35a517ee2af51f Mon Sep 17 00:00:00 2001 From: Supertiger Date: Tue, 21 Nov 2023 10:35:14 +0000 Subject: [PATCH] Fix bot bitwise bit --- src/chat-api/Bitwise.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chat-api/Bitwise.ts b/src/chat-api/Bitwise.ts index 9fb1f872..69a20934 100644 --- a/src/chat-api/Bitwise.ts +++ b/src/chat-api/Bitwise.ts @@ -35,7 +35,7 @@ export const USER_BADGES = { BOT: { name: 'Bot', // I really recommend having this even if it is unused description: 'An bot account (currently unused)', - bit: 8, + bit: 16, color: '#4c93ff' // this is the primary color, not sure how to scope to that properly :( } };