diff --git a/src/Tgstation.Server.Api/Rights/ChatRights.cs b/src/Tgstation.Server.Api/Rights/ChatRights.cs index b354e6087f..30fb36787a 100644 --- a/src/Tgstation.Server.Api/Rights/ChatRights.cs +++ b/src/Tgstation.Server.Api/Rights/ChatRights.cs @@ -19,22 +19,22 @@ namespace Tgstation.Server.Api.Rights /// /// User can change the IRC settings /// - SetIrcSettings = 4, + SetIrcSettings = 2, /// /// User can change the IRC channels /// - SetIrcChannels = 8, + SetIrcChannels = 4, /// /// User can enable/disable the Discord bot /// - SetDiscordEnabled = 16, + SetDiscordEnabled = 8, /// /// User can change the Discord settings /// - SetDiscordSettings = 32, + SetDiscordSettings = 16, /// /// User can change the Discord channels /// - SetDiscordChannels = 8, + SetDiscordChannels = 32, } }