Skip to content

Commit

Permalink
fix: Missing AddReactions permission for DM channels. (#1244)
Browse files Browse the repository at this point in the history
Co-authored-by: Samuel <33796679+Samrux@users.noreply.github.com>
  • Loading branch information
hollowstrawberry and hollowstrawberry authored Nov 7, 2020
1 parent 084db25 commit e40ca4a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public struct ChannelPermissions
/// <summary> Gets a <see cref="ChannelPermissions"/> that grants all permissions for category channels. </summary>
public static readonly ChannelPermissions Category = new ChannelPermissions(0b01100_1111110_1111111110001_010001);
/// <summary> Gets a <see cref="ChannelPermissions"/> that grants all permissions for direct message channels. </summary>
public static readonly ChannelPermissions DM = new ChannelPermissions(0b00000_1000110_1011100110000_000000);
public static readonly ChannelPermissions DM = new ChannelPermissions(0b00000_1000110_1011100110001_000000);
/// <summary> Gets a <see cref="ChannelPermissions"/> that grants all permissions for group channels. </summary>
public static readonly ChannelPermissions Group = new ChannelPermissions(0b00000_1000110_0001101100000_000000);
/// <summary> Gets a <see cref="ChannelPermissions"/> that grants all permissions for a given channel type. </summary>
Expand Down

0 comments on commit e40ca4a

Please sign in to comment.