1
0

Removed references to deprecated cChatColor::Color

This commit is contained in:
archshift 2014-07-19 11:12:34 -07:00
parent dd7df28844
commit d5b163bd3d
2 changed files with 2 additions and 2 deletions

View File

@ -1524,7 +1524,7 @@ AString cPlayer::GetColor(void) const
{
if ( m_Color != '-' )
{
return cChatColor::Color + m_Color;
return cChatColor::Delimiter + m_Color;
}
if ( m_Groups.size() < 1 )

View File

@ -153,7 +153,7 @@ bool cGroupManager::LoadGroups()
AString Color = IniFile.GetValue(KeyName, "Color", "-");
if ((Color != "-") && (Color.length() >= 1))
{
Group->SetColor(cChatColor::Color + Color[0]);
Group->SetColor(cChatColor::Delimiter + Color[0]);
}
else
{