From 9cc53476c2f4690b9fb197fc64f64cd501fce368 Mon Sep 17 00:00:00 2001 From: Cyberboss Date: Wed, 4 Apr 2018 16:07:52 -0400 Subject: [PATCH] Note to self, add unit tests for rights flags --- src/Tgstation.Server.Api/Rights/ChatRights.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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, } }