diff --git a/src/Discord.Net/Models/PackedColor.cs b/src/Discord.Net/Models/PackedColor.cs
index a5960e042..aebf4c73a 100644
--- a/src/Discord.Net/Models/PackedColor.cs
+++ b/src/Discord.Net/Models/PackedColor.cs
@@ -19,11 +19,11 @@ namespace Discord
public PackedColor(uint rawValue) { _rawValue = rawValue; }
- /// If True, a user may join channels.
+ /// Gets or sets the red component for this color.
public byte Red { get { return GetByte(3); } set { SetByte(3, value); } }
- /// If True, a user may send messages.
+ /// Gets or sets the green component for this color.
public byte Green { get { return GetByte(2); } set { SetByte(2, value); } }
- /// If True, a user may send text-to-speech messages.
+ /// Gets or sets the blue component for this color.
public byte Blue { get { return GetByte(1); } set { SetByte(1, value); } }
internal void Lock() => _isLocked = true;