From 6fdada2e7ec439c8d2ca5609a08dba154576ad6f Mon Sep 17 00:00:00 2001 From: Zack Date: Wed, 22 May 2013 16:46:34 -0300 Subject: [PATCH] Fix chat color default bug Set to correct format for chat colors Fixes #481 Closes #481 --- TShockAPI/Group.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TShockAPI/Group.cs b/TShockAPI/Group.cs index d525ee54..a7a2a909 100644 --- a/TShockAPI/Group.cs +++ b/TShockAPI/Group.cs @@ -28,7 +28,7 @@ namespace TShockAPI /// /// Default chat color. /// - public const string defaultChatColor = "255.255.255"; + public const string defaultChatColor = "255,255,255"; /// /// List of permissions available to the group. @@ -298,4 +298,4 @@ namespace TShockAPI return true; } } -} \ No newline at end of file +}