Merge remote-tracking branch 'aldproductions/rename-unused-rights'

This commit is contained in:
Rory&
2026-07-05 00:17:58 +02:00
5 changed files with 77 additions and 74 deletions
@@ -7,38 +7,38 @@ public static class SpacebarRights {
[SuppressMessage("ReSharper", "InconsistentNaming")]
public enum Rights : ulong {
OPERATOR = 1ul << 0, // has all rights
MANAGE_APPLICATIONS = 1ul << 1,
UNUSED_1 = 1ul << 1, //PREVIOUS IDENTITY: MANAGE_APPLICATIONS
MANAGE_GUILDS = 1ul << 2, // Manage all guilds instance-wide
MANAGE_MESSAGES = 1ul << 3, // Can't see other messages but delete/edit them in channels that they can see
MANAGE_RATE_LIMITS = 1ul << 4,
MANAGE_ROUTING = 1ul << 5, // can create custom message routes to any channel/guild
MANAGE_TICKETS = 1ul << 6, // can respond to and resolve support tickets
UNUSED_2 = 1ul << 4, //PREVIOUS IDENTITY: MANAGE_RATE_LIMITS
UNUSED_3 = 1ul << 5, //PREVIOUS_IDENTITY: MANAGE_ROUTING - can create custom message routes to any channel/guild
UNUSED_4 = 1ul << 6, //PREVIOUS_IDENTITY: MANAGE_TICKETS - can respond to and resolve support tickets
MANAGE_USERS = 1ul << 7,
ADD_MEMBERS = 1ul << 8, // can manually add any members in their guilds
UNUSED_5 = 1ul << 8, //PREVIOUS_IDENTITY: ADD_MEMBERS - can manually add any members in their guilds
BYPASS_RATE_LIMITS = 1ul << 9,
CREATE_APPLICATIONS = 1ul << 10,
CREATE_CHANNELS = 1ul << 11, // can create guild channels or threads in the guilds that they have permission
CREATE_DMS = 1ul << 12,
CREATE_DM_GROUPS = 1ul << 13, // can create group DMs or custom orphan channels
UNUSED_6 = 1ul << 10, //PREVIOUS IDENTITY: CREATE_APPLICATIONS
UNUSED_7 = 1ul << 11, //PREVIOUS IDENTITY: CREATE_CHANNELS - can create guild channels or threads in the guilds that they have permission
UNUSED_8 = 1ul << 12, //PREVIOUS IDENTITY: CREATE_DMS
UNUSED_9 = 1ul << 13, //PREVIOUS IDENTITY: CREATE_DM_GROUPS - can create group DMs or custom orphan channels
CREATE_GUILDS = 1ul << 14,
CREATE_INVITES = 1ul << 15, // can create mass invites in the guilds that they have CREATE_INSTANT_INVITE
CREATE_ROLES = 1ul << 16,
CREATE_TEMPLATES = 1ul << 17,
CREATE_WEBHOOKS = 1ul << 18,
UNUSED_10 = 1ul << 16, //PREVIOUS IDENTITY: CREATE_ROLES
UNUSED_11 = 1ul << 17, //PREVIOUS IDENTITY: CREATE_TEMPLATES
UNUSED_12 = 1ul << 18, //PREVIOUS IDENTITY: CREATE_WEBHOOKS
JOIN_GUILDS = 1ul << 19,
PIN_MESSAGES = 1ul << 20,
UNUSED_13 = 1ul << 20, //PREVIOUS IDENTITY: PIN_MESSAGES
SELF_ADD_REACTIONS = 1ul << 21,
SELF_DELETE_MESSAGES = 1ul << 22,
SELF_EDIT_MESSAGES = 1ul << 23,
SELF_EDIT_NAME = 1ul << 24,
UNUSED_14 = 1ul << 24, //PREVIOUS IDENTITY: SELF_EDIT_NAME
SEND_MESSAGES = 1ul << 25,
USE_ACTIVITIES = 1ul << 26, // use (game) activities in voice channels (e.g. Watch together)
USE_VIDEO = 1ul << 27,
USE_VOICE = 1ul << 28,
INVITE_USERS = 1ul << 29, // can create user-specific invites in the guilds that they have INVITE_USERS
SELF_DELETE_DISABLE = 1ul << 30, // can disable/delete own account
DEBTABLE = 1ul << 31, // can use pay-to-use features
CREDITABLE = 1ul << 32, // can receive money from monetisation related features
UNUSED_15 = 1ul << 26, //PREVIOUS IDENTITY: USE_ACTIVITIES - use (game) activities in voice channels (e.g. Watch together)
UNUSED_16 = 1ul << 27, //PREVIOUS IDENTITY: USE_VIDEO
UNUSED_17 = 1ul << 28, //PREVIOUS IDENTITY: USE_VOICE
UNUSED_18 = 1ul << 29, //PREVIOUS IDENTITY: INVITE_USERS
UNUSED_19 = 1ul << 30, //PREVIOUS IDENTITY: SELF_DELETE_DISABLE - can disable/delete own account
UNUSED_20 = 1ul << 31, //PREVIOUS IDENTITY: DEBTABLE - can use pay-to-use features
UNUSED_21 = 1ul << 32, //PREVIOUS IDENTITY: CREDITABLE - can receive money from monetisation related features
KICK_BAN_MEMBERS = 1ul << 33,
// can kick or ban guild or group DM members in the guilds/groups that they have KICK_MEMBERS, or BAN_MEMBERS
@@ -48,18 +48,18 @@ public static class SpacebarRights {
PRESENCE = 1ul << 35,
// inverts the presence confidentiality default (OPERATOR's presence is not routed by default, others' are) for a given user
SELF_ADD_DISCOVERABLE = 1ul << 36, // can mark discoverable guilds that they have permissions to mark as discoverable
MANAGE_GUILD_DIRECTORY = 1ul << 37, // can change anything in the primary guild directory
POGGERS = 1ul << 38, // can send confetti, screenshake, random user mention (@someone)
USE_ACHIEVEMENTS = 1ul << 39, // can use achievements and cheers
INITIATE_INTERACTIONS = 1ul << 40, // can initiate interactions
RESPOND_TO_INTERACTIONS = 1ul << 41, // can respond to interactions
UNUSED_22 = 1ul << 36, //PREVIOUS IDENTITY: SELF_ADD_DISCOVERABLE - can mark discoverable guilds that they have permissions to mark as discoverable
UNUSED_23 = 1ul << 37, //PREVIOUS IDENTITY: MANAGE_GUILD_DIRECTORY - can change anything in the primary guild directory
UNUSED_24 = 1ul << 38, //PREVIOUS IDENTITY: POGGERS - can send confetti, screenshake, random user mention (@someone)
UNUSED_25 = 1ul << 39, //PREVIOUS IDENTITY: USE_ACHIEVEMENTS - can use achievements and cheers
UNUSED_26 = 1ul << 40, //PREVIOUS IDENTITY: INITIATE_INTERACTIONS - can initiate interactions
UNUSED_27 = 1ul << 41, //PREVIOUS IDENTITY: RESPOND_TO_INTERACTIONS - can respond to interactions
SEND_BACKDATED_EVENTS = 1ul << 42, // can send backdated events
USE_MASS_INVITES = 1ul << 43, // added per @xnacly's request - can accept mass invites
ACCEPT_INVITES = 1ul << 44, // added per @xnacly's request - can accept user-specific invites and DM requests
SELF_EDIT_FLAGS = 1ul << 45, // can modify own flags
EDIT_FLAGS = 1ul << 46, // can set others' flags
MANAGE_GROUPS = 1ul << 47, // can manage others' groups
UNUSED_28 = 1ul << 44, //PREVIOUS IDENTITY: ACCEPT INVITES - added per @xnacly's request - can accept user-specific invites and DM requests
UNUSED_29 = 1ul << 45, //PREVIOUS IDENTITY: SELF_EDIT_FLAGS - can modify own flags
UNUSED_30 = 1ul << 46, //PREVIOUS IDENTITY: EDIT_FLAGS - can set others' flags
UNUSED_31 = 1ul << 47, //PREVIOUS IDENTITY: MANAGE_GROUPS - can manage others' groups
VIEW_SERVER_STATS = 1ul << 48, // added per @chrischrome's request - can view server stats
RESEND_VERIFICATION_EMAIL = 1ul << 49, // can resend verification emails (/auth/verify/resend)
CREATE_REGISTRATION_TOKENS = 1ul << 50, // can create registration tokens (/auth/generate-registration-tokens)