Skip to content

Commit

Permalink
Removed RGB properties
Browse files Browse the repository at this point in the history
  • Loading branch information
AgaSpace committed Jun 8, 2023
1 parent a917bea commit dc81791
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions TShockAPI/Group.cs
Original file line number Diff line number Diff line change
Expand Up @@ -156,15 +156,15 @@ public virtual List<string> TotalPermissions
/// <summary>
/// The group's chat color red byte.
/// </summary>
public virtual byte R { get; set; } = 255;
public byte R = 255;
/// <summary>
/// The group's chat color green byte.
/// </summary>
public virtual byte G { get; set; } = 255;
public byte G = 255;
/// <summary>
/// The group's chat color blue byte.
/// </summary>
public virtual byte B { get; set; } = 255;
public byte B = 255;

/// <summary>
/// Simplifies work with the <see cref="R"/>, <see cref="G"/>, <see cref="B"/> properties.
Expand Down

0 comments on commit dc81791

Please sign in to comment.