1
0

Add rank prefix and suffix to player name in chat (#3730)

Fixes issue #1721
This commit is contained in:
Heiko Hund
2017-05-27 03:15:56 +02:00
committed by worktycho
parent 73a3c4e3be
commit a0341d561a
4 changed files with 49 additions and 1 deletions

View File

@@ -1828,6 +1828,24 @@ AString cPlayer::GetColor(void) const
AString cPlayer::GetPrefix(void) const
{
return m_MsgPrefix;
}
AString cPlayer::GetSuffix(void) const
{
return m_MsgSuffix;
}
AString cPlayer::GetPlayerListName(void) const
{
const AString & Color = GetColor();