summaryrefslogtreecommitdiffstats
path: root/src/ClientHandle.cpp
diff options
context:
space:
mode:
authorarchshift <admin@archshift.com>2014-07-19 20:15:21 +0200
committerarchshift <admin@archshift.com>2014-07-19 20:15:21 +0200
commit52add840cf7fb25ff31da21265fa41bab5682020 (patch)
tree68cd229b49ee24eb60ff49fe2965e22f4993952b /src/ClientHandle.cpp
parentRemoved references to deprecated cChatColor::Color (diff)
downloadcuberite-52add840cf7fb25ff31da21265fa41bab5682020.tar
cuberite-52add840cf7fb25ff31da21265fa41bab5682020.tar.gz
cuberite-52add840cf7fb25ff31da21265fa41bab5682020.tar.bz2
cuberite-52add840cf7fb25ff31da21265fa41bab5682020.tar.lz
cuberite-52add840cf7fb25ff31da21265fa41bab5682020.tar.xz
cuberite-52add840cf7fb25ff31da21265fa41bab5682020.tar.zst
cuberite-52add840cf7fb25ff31da21265fa41bab5682020.zip
Diffstat (limited to 'src/ClientHandle.cpp')
-rw-r--r--src/ClientHandle.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ClientHandle.cpp b/src/ClientHandle.cpp
index cf78b19c5..de4245b40 100644
--- a/src/ClientHandle.cpp
+++ b/src/ClientHandle.cpp
@@ -210,11 +210,11 @@ AString cClientHandle::FormatMessageType(bool ShouldAppendChatPrefixes, eMessage
{
if (ShouldAppendChatPrefixes)
{
- return Printf("%s[MSG: %s] %s%s", cChatColor::LightBlue.c_str(), a_AdditionalData.c_str(), cChatColor::White.c_str(), cChatColor::Italic.c_str());
+ return Printf("%s[MSG: %s] %s%s", cChatColor::LightBlue, a_AdditionalData.c_str(), cChatColor::White, cChatColor::Italic);
}
else
{
- return Printf("%s: %s", a_AdditionalData.c_str(), cChatColor::LightBlue.c_str());
+ return Printf("%s: %s", a_AdditionalData.c_str(), cChatColor::LightBlue);
}
}
}
@@ -533,9 +533,9 @@ void cClientHandle::HandlePing(void)
Printf(Reply, "%s%s%i%s%i",
Server.GetDescription().c_str(),
- cChatColor::Delimiter.c_str(),
+ cChatColor::Delimiter,
Server.GetNumPlayers(),
- cChatColor::Delimiter.c_str(),
+ cChatColor::Delimiter,
Server.GetMaxPlayers()
);
Kick(Reply);