Fix chat color default bug

Set to correct format for chat colors
Fixes #481
Closes #481
This commit is contained in:
Zack 2013-05-22 16:46:34 -03:00
parent 9ec77332fb
commit 6fdada2e7e

View file

@ -28,7 +28,7 @@ namespace TShockAPI
/// <summary>
/// Default chat color.
/// </summary>
public const string defaultChatColor = "255.255.255";
public const string defaultChatColor = "255,255,255";
/// <summary>
/// List of permissions available to the group.
@ -298,4 +298,4 @@ namespace TShockAPI
return true;
}
}
}
}