Revert "Remove superadmin customization config options"

This reverts commit 1e68ac22c7.
This commit is contained in:
Lucas Nicodemus 2017-12-06 17:35:51 -07:00
parent 18f0711278
commit e91968ca91
2 changed files with 17 additions and 5 deletions

View file

@ -340,11 +340,11 @@ namespace TShockAPI
public SuperAdminGroup()
: base("superadmin")
{
R = (byte)255;
G = (byte)255;
B = (byte)255;
Prefix = "(Super Admin) ";
Suffix = "";
R = (byte)TShock.Config.SuperAdminChatRGB[0];
G = (byte)TShock.Config.SuperAdminChatRGB[1];
B = (byte)TShock.Config.SuperAdminChatRGB[2];
Prefix = TShock.Config.SuperAdminChatPrefix;
Suffix = TShock.Config.SuperAdminChatSuffix;
}
/// <summary>