Added General_ManagePermissions permissions alias

This commit is contained in:
RogueException
2015-10-01 13:59:28 -03:00
parent 9ff53b9393
commit 7c246274d7

View File

@@ -18,8 +18,10 @@ namespace Discord
public bool General_BanMembers { get { return GetBit(2); } set { SetBit(2, value); } }
/// <summary> If True, a user may kick users from the server. </summary>
public bool General_KickMembers { get { return GetBit(3); } set { SetBit(3, value); } }
/// <summary> If True, a user may adjust roles. This also implictly grants all other permissions. </summary>
/// <summary> (Server Roles only) If True, a user may adjust roles. This also implictly grants all other permissions. </summary>
public bool General_ManageRoles { get { return GetBit(4); } set { SetBit(4, value); } }
/// <summary> (Channels only) If True, a user may adjust permissions. This also implictly grants all other permissions. </summary>
public bool General_ManagePermissions { get { return GetBit(4); } set { SetBit(4, value); } }
/// <summary> If True, a user may create, delete and modify channels. </summary>
public bool General_ManageChannels { get { return GetBit(5); } set { SetBit(5, value); } }
/// <summary> If True, a user may adjust server properties. </summary>